Change event for a calculated Form TextBox

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?
 
K

Klatuu

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.
 
C

chasday

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.
 

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

Top