Security Problem!!

Any idea on why the frmMain is still auto-starting? Thanks

Do you have a macro named AutoExec?
 
That would be the reason. The AutoExec Macro is starting the form.
 
Thanks SOS! I didn't want to delete an important part of the form. Sorry for bothering you so much! Thanks
 
Thanks SOS! I didn't want to delete an important part of the form. Sorry for bothering you so much! Thanks
No bother. I wouldn't be here if I didn't want to answer questions :)
 
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?
 
Ok, so I got everything working great! SOS, how did you get the tbl to actually execute? Which part of the code? Thanks so much!
 
The table doesn't execute. It is the code on the login form that does the stuff.
 

Users who are viewing this thread

Back
Top Bottom