record naviation events

  • Thread starter Christopher Glaeser
  • Start date
C

Christopher Glaeser

Which naviation events fire when moving from record to record on a form?
I've placed breakpoints on the events I thought would fire, and apparently
I'm doing something wrong.

Best,
Christopher
 
C

Christopher Glaeser

The Current event of the form fires whenever you move record.

Thanks Allen. Now that I know the Current event should fire, I can see
there is some sort of problem with the code that is associated with the
form. I added the Current event to another form, and it worked fine.
However, the Current event does not fire for the first form. Not sure if it
is related, but I added an DropDate ActiveX control from DBI-Tech to that
form, though I don't see any names that should conflict. Any ideas what I
may have done wrong?

Best,
Christopher
 
C

Christopher Glaeser

Allen,

It was apparently some sort of glitch with Access. I deleted the event and
then added it again. Now it fires when changing records. Thanks for the
assistance.

Best,
Christopher
 
R

Rick Brandt

Christopher said:
Allen,

It was apparently some sort of glitch with Access. I deleted the
event and then added it again. Now it fires when changing records. Thanks for
the assistance.

Best,
Christopher

More than likely your form's module contained code for the current event, but
the form was lacking the entry "[Event Procedure]" in the OnCurrentEvent
property. Without that the code is never run.
 
C

Christopher Glaeser

Without that the code is never run.

Thanks, that's good to know.

Best,
Christopher
 
Top