identify changes in text box when changed by code

  • Thread starter Thread starter tim johnson
  • Start date Start date
T

tim johnson

I have a list box that use code to populate a bound
textbox when the list box is double clicked.

I want to attach an event whenever the textbox changes.
Because the text box is changed by code it seems the
AfterUpdate, Change, BeforeUpdate event does not fire.
fire.

Is there a way I can know when the textbox change after I
double click the list box?

Thanks
 
I want to attach an event whenever the textbox changes.
Because the text box is changed by code it seems the
AfterUpdate, Change, BeforeUpdate event does not fire.

The assumption being that if you're changing the textbox in code, you
can take whatever action you wish in that code...
 
Back
Top