Open the subform in design view, directly from the Database window.
Set the Navigation Buttons property to No (and probably the Scroll Bars to
Vertical Only).
If you want this to apply only when the form is opened as a subform and not
when it is opened as a stand-alone form, you could try changing those
properties in the Open event of the main form:
With Me.[NameOfYourSubformHere].Form
.NavigationButtons = False
.ScrollBars = 2
End With
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
Neil Cash said:
Is there away to hide the record navigation bar in the subform when it
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.