I have created a groupbox on a Windows form. It has many text boxes (ALL textbox controls). I find myself adding this event handler to each textbox. Is there a way that one event handler could be written to handle every time the user moves from textbox to textbox? Here is a sample of the current event(s) being handled which works fine.
Private Sub CustomerIDTextBox_LostFocus(sender As Object, e As System.EventArgs) Handles CustomerIDTextBox.LostFocus
Try
CustomerDataContext1.SubmitChanges()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
Private Sub CompanyNameTextBox_LostFocus(sender As Object, e As System.EventArgs) Handles CompanyNameTextBox.LostFocus
Try
CustomerDataContext1.SubmitChanges()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
Private Sub ContactNameTextBox_LostFocus(sender As Object, e As System.EventArgs) Handles ContactNameTextBox.LostFocus
Try
CustomerDataContext1.SubmitChanges()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End Sub
one handler for all txtbox'es.