Startup a database with a full screen switchboard form

G

Guest

I want to start a database with a switchboard showing various users and have
them click their name to go to their own switchboard. I know how to set the
startup form but can't find the full screen start up setting. Also, can you
set each subsequent user's switchboard form to require a password to get the
form to open?
 
K

Ken Snell \(MVP\)

In the startup form's Activate event, put this code:

DoCmd.Maximize


As for password, you can write programming that will ask the user for a
password and then compare that to a password stored somewhere.
 
K

Ken Snell \(MVP\)

Attach the following code to the form's Activate event:

Private Sub Form_Activate()
DoCmd.Maximize
End Sub


As for the password item, you'll need to tell us more information about
where the password is stored, how it's stored, and how the form would know
whether a correct password has been entered for the person or not.
 

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