Change event for a calculated Form TextBox

  • Thread starter Thread starter chasday
  • Start date Start date
C

chasday

I have a calculated textbox (tbTotal) on a form with it's Control Source as
[tbHours]*[tbLabor]. I want to trigger a procedure when the textbox value
changes, but can't seem to find a event that works.

tbHours and tbLabor are also calculated.
Ideas?
 
There is no event that fires when a textbox value is changed
programmatically. You may try using the After Update event of the controls
involved in the calculation.
 
Klatuu said:
There is no event that fires when a textbox value is changed programmatically.


Bummer. The workaround would require require procedures for quite a few
other events that could change the listbox value. I was hoping there was a
simpler solution.
 
Back
Top