Automatically minimize the Database window when Switchboard opens

G

Guest

How do I set the Database window to automatically minimize as soon as the
Switchboard opens? I can prevent it from opening altogether, but I want to
see the minimized window in the bottom corner of the Access window when I am
using the Switchboard.
 
J

Jason Martin

Create a macro called AutoExec. Set first action as Minimize. Set second
action as OpenForm - Switchboard.
 
G

Guest

Jason's idea is a good one or you could open the [FormName] as an icon and
then open the [Switchboard].

Just an idea

DoCmd.OpenForm "FormName", acNormal, "", "", , acIcon
DoCmd.OpenForm "Switchboard", acNormal, "", "", , acNormal

Hope this helps
 

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

Similar Threads


Top