record navigation bar

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there away to hide the record navigation bar in the subform when it appears on the main form?
 
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
appears on the main form?
 
Back
Top