R
Ron
I have a form with a button that opens another form. I have a password set to
open up the other form. It is something like this;
Private Sub Form_Open(Cancel As Integer)
Const strFormPassword As String = "Password"
If InputBox("Please Enter Password") <> strFormPassword Then
MsgBox "Password Incorrect", vbOKOnly
Cancel = True
End If
End Sub
How can I set this up so that when the password is entered, it shows up with
asterisks instead of the password itself. Can someone help me with this?
Thanks
open up the other form. It is something like this;
Private Sub Form_Open(Cancel As Integer)
Const strFormPassword As String = "Password"
If InputBox("Please Enter Password") <> strFormPassword Then
MsgBox "Password Incorrect", vbOKOnly
Cancel = True
End If
End Sub
How can I set this up so that when the password is entered, it shows up with
asterisks instead of the password itself. Can someone help me with this?
Thanks