I have made a form and added navigation buttons using the wizard.
When the focus is on the first Record, I want the "Previous Record Button" to disable.
So in the code in Click event I want to write something like:
How do I write this...?
When the focus is on the first Record, I want the "Previous Record Button" to disable.
So in the code in Click event I want to write something like:
Code:
If Current Record = BOF then Command82.Enabled = False End if
Comment