Sorry SOS! After I deleted the autoexec the form didn't pop-up but the tblLog doesn't store log-in information anymore. So how can I keep the autoexec but make the form hidden. And the form that opens is not the form with the log-in information, it's the gray one that states, "This is my form that gets opened after the hidden startup form". Oh wait, (Lightbulb). So the form that keeps popping up should be replaced with my switchboard correct? Where at in the code do I need to change that? Thanks
Private Sub Form_Open(Cancel As Integer)
Me.Visible = False
DoCmd.OpenForm "frmMain", acNormal
End Sub
Is there anyway to remove the frmMain?