Hello,
I have a datagrid and need to know how to update the data in it that the user changes. I can do it with the code below on close of the form, but need to know how to do it lets say, after they hit the Enter key or as the data changes.
Here is my code for on close.
Thanks,
Demopro
I have a datagrid and need to know how to update the data in it that the user changes. I can do it with the code below on close of the form, but need to know how to do it lets say, after they hit the Enter key or as the data changes.
Here is my code for on close.
Code:
Private Sub frmSwitchBoard_Closing(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles MyBase.Closing
Me.Acct_Cycle_Recap_Temp_IITableAdapter.Update(Me.EnterpriseDataSet)
End Sub
Thanks,
Demopro