Navigation bar

Super Suarez

Registered User.
Local time
Today, 03:01
Joined
Jul 10, 2013
Messages
36
Hi guys,

how do I get access to the default navigation buttons on a form ie back, forward, new and last buttons. I want to right some VB code that acts when the buttons are pressed. How do I do it?

I don't really want to create my own buttons and do onclick events

Thanks
 
In your form properties formta tab, ensure navigation buttons is set to yes
 
Thanks for that. I'm not sure if I made myself clear. I want to be able to vb code events from the windows default navigation buttons along the bottom of the form. I understand they are there on my form and I can navigate, but I want to create events from those navigation buttons rather than creating my own buttons with onclick events. Hope that's clearer. Where do I code them?
 
You can't create events - they happen!

So for example clicking on the next or previous record buttona will trigger some events - typically the form before and after update events for the current record and the on current event for the new record.
 

Users who are viewing this thread

Back
Top Bottom