might might seem like an odd question but what I would like is to have the password encrypted. Example "******" as the person types it in the message box, instead of showing the actual passwoed.
I am using the code below
Dim PassWord As String
PassWord = InputBox("Enter Password")
If PassWord = "Password" Then
DoCmd.OpenForm "CHANGEAmountandNumofEmp"
Else
MsgBox ("You're not authorized so don't click here")
End If
i have searched all through tek-tips but haven't found anything that could help me.
Thanks in advance
I am using the code below
Dim PassWord As String
PassWord = InputBox("Enter Password")
If PassWord = "Password" Then
DoCmd.OpenForm "CHANGEAmountandNumofEmp"
Else
MsgBox ("You're not authorized so don't click here")
End If
i have searched all through tek-tips but haven't found anything that could help me.
Thanks in advance