Hide Database Window & Appear once closed

OminousDaark

New member
Local time
Tomorrow, 06:37
Joined
Dec 22, 2013
Messages
8
Hi, So I have a database and I need it so once the database file is launched the Database window & tool bars are hidden so people cannot see them. Along with that once the operator clicks on "Exit" on the main menu I would want it to close the database but display all of the Windows / Tool Bars again.

If anyone could help me possibly that would be cool - this seems to be the last section I am stuck on.
 
Yeah that is it! Thanks haha Something so simple, Although that hides it - is there a way for it to reappear once I click on the exit button on the main menu?
 
If possible and anyone could help me out with the above question that would be great,

- How would I get the navigation pane to RE-APPEAR / Become Visible once I click on the doorway / exit button on the main menu?
 
To show the navigation pane use:
Code:
DoCmd.SelectObject acTable, , True
To hide the navigation pane use:
Code:
  DoCmd.NavigateTo ("acNavigationCategoryObjectType")
  DoCmd.RunCommand acCmdWindowHide
 

Users who are viewing this thread

Back
Top Bottom