views:

128

answers:

1

How can I hide this bar (see picture) in Access 2007?

hide this bar

+1  A: 

Set the Form.NavigationButtons property to False.

CesarGon
Every form has that property, but if it's showing up on table datasheets, the user might want to hide it there, too. In fact, a datasheet is actually an object of type FORM, so it does actually have a NavigationButtons property. But there is no Datasheets collection and you don't get access to these properties through the TableDefs collection. Instead, you have to set Screen.ActiveDatasheet.NavigationButtons = False for each datasheet that you open. If you wrote a wrapper around DoCmd.OpenTable you could do that.
David-W-Fenton