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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top