I have 22 text boxes that have to be checked to see if the value has changed. I am using the TextChanged Event handler to do this thus:

Code:
Private Sub TextStringChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) 


        DataChanged = True
        RemoveHandler ........
        RemoveHandler ........

        Etc ......

End Sub
The Handler would be added after the data had been loaded. The question is:

Is there another way of checking for text changes without having to add and remove 22 handlers.

Computerman