Hi all

I have a simple problem I know how to solve but I believe there is a smarter way to do it.

I have 10 textboxes and at the bottom, I have a button.

The button should only be enabled if there is made any updates in either of the textboxes.

I use this code for each field:

Private sub "Fieldname1"_afterupdate()
Button.Enabled = True

End sub

Is there a method were i do this for all fields?