L
lmossolle
I am using the following code, I would like the password typed to be masked
is it possible?
Private Sub Command15_Click()
Dim stPassword As String
stPassword = InputBox("Enter Your Password")
If stPassword = "areaa" Then
Me.Visible = True
DoCmd.OpenForm "MICC-HQ_Frm", acNormal
Me.Visible = True
Else
MsgBox "You Entered the wrong password"
End If
End Sub
Thanks,
is it possible?
Private Sub Command15_Click()
Dim stPassword As String
stPassword = InputBox("Enter Your Password")
If stPassword = "areaa" Then
Me.Visible = True
DoCmd.OpenForm "MICC-HQ_Frm", acNormal
Me.Visible = True
Else
MsgBox "You Entered the wrong password"
End If
End Sub
Thanks,