Forms

s_pandeymanoj

New member
Local time
Today, 02:06
Joined
Mar 26, 2009
Messages
1
Hi,

I have two forms. In one form, I have one combo box and textbox to enter password.

For Combo box, I have link with the table, when I run the form, I can select the user name.

For password also, I have created table. Here when I run the form and i select the user name and then have to entered password and that password, I have to enter manually.

And I have one command button, If I have click on that button, the next form should be display.

Please help.

Thanks in advance.

Regards
 
Open a new form:
Private Sub ButtonName_Click()
DoCmd.OpenForm "FormName"
End Sub
 

Users who are viewing this thread

Back
Top Bottom