Form Event from Control Event

  • Thread starter Thread starter Dave Wurtz
  • Start date Start date
D

Dave Wurtz

All,

Is there an event on the Form that will get fired when the text in another
control (i.e. textbox) is changed? I know there is a TextChanged event on
the control, but I'm looking for something off of the form.

Thanks in advance!

Dave
 
Dave Wurtz said:
Is there an event on the Form that will get fired when the text in
another control (i.e. textbox) is changed? I know there is a
TextChanged event on the control, but I'm looking for something off
of the form.

If the textbox is accessible from outside the form, you can also handle the
textbox' events outside.

Another approach is to handle the event inside the form and raise another
event and handle the latter ouside.
 
Back
Top