MS Access
Whenever we create forms for data tables it becomes necessary to provide navigation buttons. Though MS-Access provides built-in navigation buttons, Developers would like to provide standardised, user-friendly button type navigation features in their forms. The Function FrmNavigate aims to standardise such a feature and thus makes it easier to reuse the code whereever record navigation is required.
Create 4 Buttons - First, Previous, Next and Last For each onclick property in Properties window call the function as shown below
Button Property Value
---------------------------------------------------
First OnClick =FrmNavigate("First")
Previous OnClick =FrmNavigate("Prev")
Next OnClick =FrmNavigate("Next")
Last OnClick =FrmNavigate("Last")