I have a time entry form that contains a tabcontrol with tab pages for each day of the week. Within this control is a table layout panel that is holding together various textboxes/labels. For each day of the week, the inputs are named in a similar fashion:
txtMonWorkHours
txtMonPTOHours
txtMonOTHours
txtTuesWorkHours
txtTuesPTOHours
txtTuesOTHours
...
I am using ADO.net to load/save all these values from a database into their respective textboxes.

What I am now trying to do now is provide a method to validate entry (which I have now finished on an individual event basis such as:
Private Sub txtMonIn_Leave(ByVal sender As Object, ByVal e As System.EventArgs) Handles txtMonIn.Leave
ValidateTimeEntered(txtMonIn)
End Sub
and
Private Sub txtMonIn_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtMonIn.TextChanged
TransitionTextPreValidate(txtMonIn)
End Sub
My question is: Is there a way to add the method I have created to all the textboxes I need without having to assign each method to each textbox event individually?
...Handles txtMonIn.TextChanged, txtTueIn.TextChanged .....so all the TxtIn??? use the same proc, ditto with the others