[IronPython] data binding

zeleny zeleny02 at gmail.com
Mon Jul 17 21:51:22 CEST 2006


> So how do I propagate my changes back, then?
Hmm.

DataSet dataSet; DataAdapter adapter;
// configuring the adapter
adapter.Fill (dataSet, "table1");
dataGridView1.DataSource = dataSet;
dataGridView1.DataMember = "table1";
// changes to the datagridview
adapter.Update (dataSet, "table1");



More information about the Ironpython-users mailing list