Event not firing

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

I've placed some code in the after update event for a text
box, and when I change the value and tab forward nothing
happens. I've tried using a breakpoint to see if the code
is getting fired, but no response.

Any ideas?

Thanks,
Bill
 
Bill said:
I've placed some code in the after update event for a text
box, and when I change the value and tab forward nothing
happens. I've tried using a breakpoint to see if the code
is getting fired, but no response.

Did you try putting a MsgBox in the code to see if that comes up? Perhaps
your event is firing, but it is simply not doing what you expect.
 
Thanks for your response. I tried the message box but
nothing happened. Also, I commented out the rest of the
code in the form module and still nothing happened (I was
concerned about conflicting events).

Best regards,
Bill
 
Thanks for your response. I tried the message box but
nothing happened. Also, I commented out the rest of the
code in the form module and still nothing happened (I was
concerned about conflicting events).

Are you sure you have "[Event Procedure]" entered in the AfterUpdate
property? The code can exist in the form's module, but without that entry
nothing tells it to fire.
 
Rick,

That was it. Thanks alot for your help.

Best regards,
Bill

-----Original Message-----
Thanks for your response. I tried the message box but
nothing happened. Also, I commented out the rest of the
code in the form module and still nothing happened (I was
concerned about conflicting events).

Are you sure you have "[Event Procedure]" entered in the AfterUpdate
property? The code can exist in the form's module, but without that entry
nothing tells it to fire.


--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com


.
 
Back
Top