Fill a DataTable in a Class from another Class

  • Thread starter Thread starter Eddy
  • Start date Start date
E

Eddy

Hi,

I need to fill a dataset in a form and automatically take affect in other
form.
For example:

I have a DataGrid attached to a DataTable in Form1 and I'm adding a record
in the same DataTable, but this time from Form2 and it doesn't take effect
in form1.


Please help me
 
Hi Eddy,

It doesn't take effect until changes of a new row or modifed one are
commited.
Try invoking BindingManagerBase.EndCurrentEdit.
 
Back
Top