Load form

S

Steve

I have cmdPower on Form1 and I want to load another form - Form2 with this
button, how can I do it?
 
J

John Spencer

Add code to the button's click event.

DoCmd.OpenForm "NameOfFormToOpen"

Look up help on the OpenForm command for the various options you have when
opening a form.
 
Top