G
Guest
how to retrieve the hidden form, if so, can it be done with a password
thanks
thanks
Mark A. Sam said:Yes it can be done. Here is an example to display the form from a button:
Private Sub Command1_Click()
If InputBox("Enter Password to view Form!") = "myPassword" Then
Forms![myHiddenForm].Visible = True
End If
End Sub
The form name is: myHiddenForm
The password is: my Password
God Bless,
Mark A. Sam
Gerald said:how to retrieve the hidden form, if so, can it be done with a password
thanks
Gerald said:Thanks..
but I made a mistake in my question, it was supposed to be a table not form
since I have stored few password in table, and want to hide it. Though if
hidden how can I read it if need to change password later.
would appreciate if you could answer my last query, i.e. I tried taking off
the all option from startup for showing menu's etc. i.e. all checkboxes
deselected.
if I need to make any changes how can I go in background i.e. dbase window
or even startup window
many thanks
Mark A. Sam said:Yes it can be done. Here is an example to display the form from a button:
Private Sub Command1_Click()
If InputBox("Enter Password to view Form!") = "myPassword" Then
Forms![myHiddenForm].Visible = True
End If
End Sub
The form name is: myHiddenForm
The password is: my Password
God Bless,
Mark A. Sam
Gerald said:how to retrieve the hidden form, if so, can it be done with a password
thanks