Hiding record controls on subforms

Quasius

Registered User.
Local time
Today, 07:57
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.
 
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?
 
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

Back
Top Bottom