G
Guest
I have a control on a Menu with an 'On click' Event Procedure as follows:
Is there any way that the Password can be typed and appear as xxxxxx etc as
typed to prevent unauthorised users from seeing the actual password typed?
Private Sub ENTER_PG_Click()
On Error GoTo Err_ENTER_PG_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "ENTER PLANNED GIVING"
If InputBox("Please Enter Password") = "1" Then
DoCmd.OpenForm stDocName, , , stLinkCriteria
Else
MsgBox "Sorry, Incorrect Password"
End If
Exit_ENTER_PG_Click:
Exit Sub
Err_ENTER_PG_Click:
MsgBox Err.Description
Resume Exit_ENTER_PG_Click
End Sub
Thanks for any help
Is there any way that the Password can be typed and appear as xxxxxx etc as
typed to prevent unauthorised users from seeing the actual password typed?
Private Sub ENTER_PG_Click()
On Error GoTo Err_ENTER_PG_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "ENTER PLANNED GIVING"
If InputBox("Please Enter Password") = "1" Then
DoCmd.OpenForm stDocName, , , stLinkCriteria
Else
MsgBox "Sorry, Incorrect Password"
End If
Exit_ENTER_PG_Click:
Exit Sub
Err_ENTER_PG_Click:
MsgBox Err.Description
Resume Exit_ENTER_PG_Click
End Sub
Thanks for any help