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.

Signature
Ken Snell
<MS ACCESS MVP>
>I want to start a database with a switchboard showing various users and
>have
[quoted text clipped - 5 lines]
> the
> form to open?
DOUG - 28 Aug 2006 15:09 GMT
Thank you for the help. Can you be more specific about the programming?
> In the startup form's Activate event, put this code:
>
[quoted text clipped - 11 lines]
> > the
> > form to open?
Ken Snell (MVP) - 28 Aug 2006 21:01 GMT
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.

Signature
Ken Snell
<MS ACCESS MVP>
> Thank you for the help. Can you be more specific about the programming?
>
[quoted text clipped - 14 lines]
>> > the
>> > form to open?