why not show in grid & textbox synchronous -
04-15-2006
, 05:16 AM
hi,
I use .net 2003, In form I have a grid and some textboxs.
DataView view = ......
grid.DatSource = view;
and add binding for textBox, like :
TxtCode.DataBindings.Add( "Text", view.Table, "cust_code" );
TxtName.DataBindings.Add( "Text", view.Table, "cust_name" );
when I scroll my grid, textbox.Text do not change, it is fixed.
I don't know why, please help me.
Thanks.
wu jianhua. |