Navigation event code?

  • Thread starter Thread starter Dean Slindee
  • Start date Start date
D

Dean Slindee

Is there a way to attach code to the < navigation button being clicked?
What would the name of the control and/or event be?

Thanks,
Dean Slindee
 
Dean Slindee said:
Is there a way to attach code to the < navigation button being clicked?
What would the name of the control and/or event be?

If you want to run code each time you *arrive* at a different record then use
the current event of the form. You won't know what the user did to cause the
navigation to occur though. It could have been any of the navigation buttons,
applying a filter, removing a filter, etc.. Anything that causes the current
record to change.

If you really need to know when they pressed specific navigation buttons then
you need to remove the standard ones and replace them with your own buttons.
 
Back
Top