Programmatically toggling "Shutter Bar Open/Close Button"? Seekingguidance

B

bgedelman

Various folks have found a programmatic method to hide the Navigation
Bar completely. (DoCmd.SelectObject acTable, "MSysObjects", True :
DoCmd.RunCommand acCmdWindowHide)

But I'd rather that the Navigation Bar be available if users choose to
restore it. That is, I just want to set the Navigation Bar to "Close"
-- just like clicking the double-left arrow at the top-right of the
Navigation Bar.

Any suggestions? Seems like this should be possible, but I just can't
find the command. Many thanks.
 
B

bgedelman

Solution:

DoCmd.SelectObject acTable, "MSysObjects", True
DoCmd.RunCommand acCmdDocMinimize
 

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