Help with opening splash screen

freddienet

Registered User.
Local time
Today, 17:49
Joined
Jun 4, 2004
Messages
23
The goal is hiding the menu bar. I have accomplished that by inserting the commands listed here by several people, I appreciated that.
I have inserted the command to hide the menu bar in the splash screen code.
The problem is that when I open the DB without holding the left shift key down the splash screen opens with the menu bar showing.
If I hold the left shift key down the database objects open. If I go to the forms object and click on the splash screen it opens without the menu bar showing.
Strange to me.
What am I doing wrong?

Freddie
 
Unless you post a copy of your database [without the tables and forms] with your splash screen we can only guess what you are doing wrong. What is the code you have in the splash screens OnOpen event?

I have code posted in the Code Repository section Hide all Access Toolbars and Menubars that gives you what you need to hide the menu bar and also all menu bars and tool bars.

This command will hide just the menu bar...
Code:
DoCmd.ShowToolbar "Menu Bar", acToolbarNo
Placing that command in the OnOpen event of your splash screen should do.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom