-
Refresh winform
hi all.. thanks in advance for helping :)
we have a parent form with datagrid which opens a second form to edit this datagrid. how can we refresh the datagrid when the user has closed the second form after editing? We've tried reloading and/or refreshing both the datagrid and form and opening and closing forms but none seemed to work... >_< any help will be grateful. :wave:
-
Re: Refresh winform
could you post your code about that scenario?
-
Re: Refresh winform
try
public static Form1 frmfirst =null;
frmfirst = this;
'call this to form2
form1.frmfirst.datagrid.Your changes here;