D
Dave
Access 2003
I use this code when opening a form.
Private Sub cndAdminArea_Click()
Dim password As String
Dim Answer As String
password = "admin"
Answer = InputBox("Enter Admin Password: ", "Admin Confirmation",
"Enter Password")
If Answer = password Then
DoCmd.OpenForm "frmUpdate"
Else
MsgBox "You have not entered the correct password" & vbLf & _
"Please check the password and try again OR contact the real
Administrator"
Exit Sub
End If
End Sub
Is there any way to have it be ****** when they type in the password (in
case someone is looking over their shoulder)?
Any help here will be appreciated.
Thanks in advance
dave
I use this code when opening a form.
Private Sub cndAdminArea_Click()
Dim password As String
Dim Answer As String
password = "admin"
Answer = InputBox("Enter Admin Password: ", "Admin Confirmation",
"Enter Password")
If Answer = password Then
DoCmd.OpenForm "frmUpdate"
Else
MsgBox "You have not entered the correct password" & vbLf & _
"Please check the password and try again OR contact the real
Administrator"
Exit Sub
End If
End Sub
Is there any way to have it be ****** when they type in the password (in
case someone is looking over their shoulder)?
Any help here will be appreciated.
Thanks in advance
dave