Window when database opens

  • Thread starter Thread starter Steven
  • Start date Start date
S

Steven

I have a database db1.mde. In the module of this database
it opens db2.mde and closes db1.mde. db2 is my main
database. db2 is database password protected. I am doing
it this way the module of db1.mde so noone can see the
password. My problem is that when db2 opens from db1 it
is not in a full window screen vs if I opened db2 directly
typing in the password it opens with a full window screen.

How can I fix this so db2 will open with a full window
screen when opened from db1.

Thank you for your help.

Steven
 
-----Original Message----- snip

How can I fix this so db2 will open with a full window
screen when opened from db1.

Thank you for your help.

Steven
.
In the On Open event of the startup form of db2, write:
DoCmd.Maximize

Roxie Aho
roxiea at usinternet.com
 
Back
Top