CB
Clay Burch
Syncfusion Team
May 22, 2002 02:56 PM UTC
In the sample from the FAQ, I dropped a button and a textbox on the form. Then add this button handler. The code took the contents of the textbox and place then into the datagrid at 2,1.
private void button1_Click(object sender, System.EventArgs e)
{
this.dataGrid1[2, 1] = this.textBox1.Text;
}
So, in your case, are the changes not showing in the datagrid? Or, are they showing in the datagrid, but are not getting back to your dataset?