I have 35 Text boxes on a form,and I want all of them to call the same procedure in their Change event. Without having to place a call to the procedure in every change event how can I do this?
Thanks
I have 35 Text boxes on a form,and I want all of them to call the same procedure in their Change event. Without having to place a call to the procedure in every change event how can I do this?
Thanks
Sub text_Change(ByVal sender as Object, ByVal e As Eventargs) Handles Text1.Change, Text2.change, Text3.Change, etc..
That is going to be one ugle declaration.......:eek:
yep:(