Weresmytriple
Registered User.
- Local time
- Today, 16:14
- Joined
- Sep 5, 2013
- Messages
- 58
hi all,
i am currently using
to password protect a form within my database. it is working great however i was wondering if there is any way to make the characters appear as **** when entering the password?
thanks for any help
michael
i am currently using
Code:
Private Sub Form_Open(Cancel As Integer)
Const cstrPassWord As String = "open"
Dim strPassWord As String
strPassWord = InputBox("Password:")
If Not strPassWord = cstrPassWord Then
Cancel = True
End If
End Sub
to password protect a form within my database. it is working great however i was wondering if there is any way to make the characters appear as **** when entering the password?
thanks for any help
michael