Private Sub APROVADO_Exit(cancel As Integer)
Hi! I've built the code below into my Access form to make something like a "digital signature". It works well, except for the typed password, that doesn't appear as "*".
Is there any way to do this?
Thanks
Paulo
---------------------------------------------------------
Dim SN
SN = InputBox("Type the password to allow the filling of this field!", "PASSWORD"
If SN = "12345" Then
MsgBox "PASSWORD OK!"
Else
MsgBox "INVALID PASSWORD!"
FIELD2.SetFocus
FIELD2.Text = ""
FIELD1.SetFocus
End If
End Sub
Hi! I've built the code below into my Access form to make something like a "digital signature". It works well, except for the typed password, that doesn't appear as "*".
Is there any way to do this?
Thanks
Paulo
---------------------------------------------------------
Dim SN
SN = InputBox("Type the password to allow the filling of this field!", "PASSWORD"
If SN = "12345" Then
MsgBox "PASSWORD OK!"
Else
MsgBox "INVALID PASSWORD!"
FIELD2.SetFocus
FIELD2.Text = ""
FIELD1.SetFocus
End If
End Sub