Navigation Pane

T

Timothy Stinson

I read that you can minimize tha navigation pane by selecting F11, but is
there a way when an object such as a query is opened the navigation pane auto
hides?
 
B

Brendan Reynolds

Timothy Stinson said:
I read that you can minimize tha navigation pane by selecting F11, but is
there a way when an object such as a query is opened the navigation pane
auto
hides?


I'm not aware of any way to do this if the query is opened using the
out-of-the-box Access UI. You could certainly do it if you created your own
form to collapse the Navigation Pane and then open the query, here's an
example ...

Private Sub cmdTest_Click()

DoCmd.SelectObject acForm, Me.Name, True
DoCmd.Minimize
DoCmd.OpenQuery "qryTest"

End Sub
 

Ask a Question

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.

Ask a Question

Top