Talismanic
Registered User.
- Local time
- Today, 22:22
- Joined
- May 25, 2000
- Messages
- 377
Is there a Format As Password for Input boxes that will hide the contents being entered. Here is what I have but I can't figure out a way to put the password mask on top of it.
Dim strPasswd
strPasswd = InputBox("Enter Password", "Restricted Form ")
If strPasswd = "YourPassWord" Then
DoCmd.OpenForm "YourFormName", acNormal
Else
Exit Sub
End If
Any ideas?
Dim strPasswd
strPasswd = InputBox("Enter Password", "Restricted Form ")
If strPasswd = "YourPassWord" Then
DoCmd.OpenForm "YourFormName", acNormal
Else
Exit Sub
End If
Any ideas?