Are you using Access security I.E. logging in as Mitch?
If so in the on open event of your form (in Visual Basic),
something like this would work:
Private Sub Form_Open(Cancel As Integer)
On Error GoTo ErrFO
If CurrentUser()<> "Mitch" Then
MsgBox "Permission denied.", vbCritical, "Security Check."
Cancel = True
End If
ExitFO:
Exit Sub
ErrFO:
MsgBox Err.Description, vbInformation, "Form Open Error."
Resume ExitFO
End Sub
Bingo! Gord
ghubbell@total.net