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 *****?
--
Neil_Pattison
------------------------------------------------------------------------
Neil_Pattison's Profile:
http://www.excelforum.com/member.php...o&userid=27696
View this thread:
http://www.excelforum.com/showthread...hreadid=472890