A family of Microsoft relational database management systems designed for ease of use.
In my own databases, including my demo files made available online, rather than hiding the navigation pane I normally minimize it by putting the following code in the Open event procedure of the database's opening form:
' minimize navigation pane
DoCmd.SelectObject acForm, Me.Name, True
DoCmd.Minimize
That way it does not intrude on the screen, but is easily maximized by me or users of my demos if I or they need to access any of the objects in the database. If I'm distributing a file to an end user, however, I would normally do as Hans has described to hide the navigation pane. Additionally I would create an AutoKeys macro in which the {F11} key is set to perform no action. This prevents the user opening the hidden navigation pane with the F11 key.