NavigationPane Access

J

jero

Hello,
How to hide the navigation pane in vba ?
Only with : DoCmd.RunCommand acCmdWindowHide ?
It's not possible with something like :
CurrentDb.Properties("Something ?").Value=????
Other :
Is it possible (in vba) to hide the ribbon ?
Thank's in advance
jpg
 
A

Arvin Meyer [MVP]

jero said:
Hello,
How to hide the navigation pane in vba ?
Only with : DoCmd.RunCommand acCmdWindowHide ?
It's not possible with something like :
CurrentDb.Properties("Something ?").Value=????
Other :
Is it possible (in vba) to hide the ribbon ?

DoCmd.ShowToolbar "Ribbon", acToolbarNo
 
J

jero

Hello and thank for the answer,
The command DoCmd.ShowToolbar "Ribbon", acToolbarNo doesn't hide the
navigation pane (only the ribbon)
Sorry for my english..
jpg
 
A

Albert D. Kallal

jero said:
Hello and thank for the answer,
The command DoCmd.ShowToolbar "Ribbon", acToolbarNo doesn't hide the
navigation pane (only the ribbon)
Sorry for my english..
jpg

Arivn has given you a great way to hide the ribbon and office button.

To hide the nav pane, start ms-access and the application up (use the shift
key to by-pass your startup that hides everything).

Now, office (pizza) button
then lower right you see "access options"

then current database.

You see an section called navigation..and there is a option you can un-check
that says to display the navigation pane.

So, to work etc, just hold down the shift key, and you have the full ribbon
and nav pane. However, in your start form, if you execute your command, then
you not see ribbon, office button nor the nav pane...
 
J

jero

Thank's
Albert D. Kallal said:
Arivn has given you a great way to hide the ribbon and office button.

To hide the nav pane, start ms-access and the application up (use the
shift key to by-pass your startup that hides everything).

Now, office (pizza) button
then lower right you see "access options"

then current database.

You see an section called navigation..and there is a option you can
un-check that says to display the navigation pane.

So, to work etc, just hold down the shift key, and you have the full
ribbon and nav pane. However, in your start form, if you execute your
command, then you not see ribbon, office button nor the nav pane...
 

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