Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

disable navigation buttons

Status
Not open for further replies.

smack317

IS-IT--Management
Apr 30, 2003
13
US
is there a way to disable the navigation buttons at the bottom of the forms?
 
In retrospect,

Navigation Buttons are either Visible(Enabled) or Hidden(Disabled).

While in you Form's Design View, you should see the Property "Navigation Buttons", select "No". Your Form will now always Load with the Navigation Buttons Hidden.

If you want to Toggle between Hiding/Showing the Navigation Buttons it's really up to you where you place it. In the Form's On Open Event, in the Click Event of a Command Button etc.

To Hide:

Me.NavigationButtons = False


To Show:

Me.NavigationButtons = True
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top