Hide Database Window?

G

Guest

I have completely finished a sizable project (built in 2002, saved as 2000).
I have unchecked all options on the Startup form, and unchecked all options
on the Options > View form....but the database window still opens after the
first user action.

Have I overlooked something? There is only one related post, but that
seemed to have been solved by unchecking the 'Windows in Taskbar' option.

Is there a way to hide the database window using code?

Please help!!
 
G

Guest

Here's a quote from theAccessWeb

You can hide the database container window by selecting the "Display
Database Window" option under Tools Menu/Startup. However, if you need to
show or hide the window on demand afterwards, you can use one of these ways.

To show the database window, run
Docmd.SelectObject acTable, , True

To Hide the database window, run
Docmd.SelectObject acTable, , True
Docmd.RunCommand acCmdWindowHide
 
I

Immanuel Sibero

Pete,

So you did a Tools>>Startup>>Advanced and uncheck everything?

Immanuel Sibero
 
G

Guest

I figured it out, and this one's worth remembering. I had a
SelectObject.Form command in VB with the database window argument set to
True. In short, the Access start-up check boxes will not override that
command.

Thanks for the help.
 

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