Hiding record controls on subforms (1 Viewer)

Quasius

Registered User.
Local time
Today, 00:35
Joined
Jul 30, 2002
Messages
13
Is there a way to hide the controls at the bottom of a subform that allow a user to change records? I don't want the user to be able to change them manually, as this will cause problems. Thanks.
 

yippie_ky_yay

Registered User.
Local time
Today, 01:35
Joined
Jul 30, 2002
Messages
338
If you mean the navigation buttons, then select the form - properties - Navigation Buttons (change to "no").

Or you could put:
Me.Form.NavigationButtons = False
in the load_form part (or some variation if you would rather have it in a button).

Is this what you were looking for?
 

Quasius

Registered User.
Local time
Today, 00:35
Joined
Jul 30, 2002
Messages
13
Yep, thanks. I had to go back to the initial form that the subform is based on, but it worked. Thanks for the tip.
 

Users who are viewing this thread

Top Bottom