Hi,
i've created a userform that I want to password protect, and it is all working fine, however i would like the password characters when input to show **** instead of what is being typed.... can anyone help?
Here is my code so far:
Thanks
i've created a userform that I want to password protect, and it is all working fine, however i would like the password characters when input to show **** instead of what is being typed.... can anyone help?
Here is my code so far:
Code:
Private Sub CommandButton1_Click()
If Me.TextBox1 = "Password" Then
UserForm1.Show
Else
MsgBox "You do not have permission to view this report"
End
End If
End Sub
Thanks