Hi I have this code behind a cmd button in a form:
Private Sub Label120_Click()
If InputBox("Please enter your password", "Authorization needed") = "leisure2" Then
DoCmd.RunMacro "Edit"
Else
DoCmd.RunMacro "Macro3"
Exit Sub
End If
End Sub
I want that the password, when the user enters it, will be shown as asterisks and not as the password
thanks Olivia
Private Sub Label120_Click()
If InputBox("Please enter your password", "Authorization needed") = "leisure2" Then
DoCmd.RunMacro "Edit"
Else
DoCmd.RunMacro "Macro3"
Exit Sub
End If
End Sub
I want that the password, when the user enters it, will be shown as asterisks and not as the password
thanks Olivia