Users must enter a password to get to an entry form. Is there a way to convert the typed text into "*"? The way it is now, someone could see the typed password.
Here is the code that I am using to prompt for the password:
Private Sub cmdFrontRangeData_Click()
Dim password As String
ReturnUserName
password = InputBox("Enter Password " & vbNewLine & vbNewLine & " " & ReturnUserName())
If password <> "123" Then
GoTo last
Else
Sheets("Data").Activate
SelectionScreen.Show
End If
last:
Sheets("Report").Activate
Unload Me
End Sub
Any help will get you a star!!
Chilly442
Here is the code that I am using to prompt for the password:
Private Sub cmdFrontRangeData_Click()
Dim password As String
ReturnUserName
password = InputBox("Enter Password " & vbNewLine & vbNewLine & " " & ReturnUserName())
If password <> "123" Then
GoTo last
Else
Sheets("Data").Activate
SelectionScreen.Show
End If
last:
Sheets("Report").Activate
Unload Me
End Sub
Any help will get you a star!!
Chilly442