Event not firing

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
 
R

Rick Brandt

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

Guest

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
 
R

Rick Brandt

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

Bill

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


.
 

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