N
Neil_Pattison
I have used the following code to set up a simple inputbox for a user to
enter a password in to access a report
Dim PW As String
PW = InputBox("Please enter the password")
If PW = "THEPASSWORD" Then
Else
MsgBox "That's not correct"
Cancel = True
Exit Sub
End If
How can I add into this code something so that the inputbox uses the
input mask for a password so it shows on screen as *****?
enter a password in to access a report
Dim PW As String
PW = InputBox("Please enter the password")
If PW = "THEPASSWORD" Then
Else
MsgBox "That's not correct"
Cancel = True
Exit Sub
End If
How can I add into this code something so that the inputbox uses the
input mask for a password so it shows on screen as *****?