Thanks for that Scott. As I am not sure how to go about that, can you assist?
>Thanks for that Scott. As I am not sure how to go about that, can you assist?
Build a form (frmPassword) with a Textbox (txtPassword) and commandbutton (cmdVerify). In your sub below, call
frmPassword, using the Tag property:
Private Sub ENTER_PG_Click()
'/call frmPassword, and pass the name of the form you want to open in the last argument
'/which is the OpenArgs argument
DoCmd.OpenForm "frmPassword", , , , , , "Enter Planned Giving"
End Sub
Now, on frmPassword, add this code to the cmdVerify:
Sub cmdVerify_Click()
If Me.txtPassword = "1" Then
'/If the password matches, then open the form passed in via
'/the OpenArgs argument
DoCmd.OpenForm Me.OpenArgs
End If
End Sub
>> >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
[quoted text clipped - 6 lines]
>> scott@takemeout_infotrakker.com
>> www.infotrakker.com
Scott McDaniel
scott@takemeout_infotrakker.com
www.infotrakker.com