Form Buttons Question

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

Is there any way to move and make larger the Form buttons which take you on
to the next form and have the record number between the arrow buttons
Thanks in advance.........Bob Vance
 
I think you meant the "Navigation Bar" at the bottom of the Form???

If that's the case, you can't change the "Navigation Bar" except making it
invisible.
However, you can create your own "Navigation Bar" on the Form using
CommandButtons (and TextBox).
 
How would you create a button to flick you on to the next Form, say from
record 1 to 2
Thanks Bob Vance
 
How would you create a button to flick you on to the next Form, say from
record 1 to 2
Thanks Bob Vance

Code it's click event:
DoCmd.GoToRecord , , acNext

To go backward:
DoCmd.GoToRecord , , acPrevious

If you use the command button wizard to create the buttons, these are
some of the available options.
 
Thanks worked brilliant, Bob

fredg said:
Code it's click event:
DoCmd.GoToRecord , , acNext

To go backward:
DoCmd.GoToRecord , , acPrevious

If you use the command button wizard to create the buttons, these are
some of the available options.
 
Back
Top