Global Event For Any Control That Is Changed

  • Thread starter Thread starter Amy L.
  • Start date Start date
A

Amy L.

Is there a global event anywhere that is generated for any control
that has a change?

I am looking for something to enable and disable an "apply" button.

Amy
 
* (e-mail address removed) (Amy L.) scripsit:
Is there a global event anywhere that is generated for any control
that has a change?

I am looking for something to enable and disable an "apply" button.

You will have to recursively enumerate the controls and add a handler to
the controls' event using 'AddHandler'.
 
Back
Top