J
Jack Marks
Isn't there an easy way, without writing a lot of code, to use a command
button to close form A and open form B?
button to close form A and open form B?
Jack said:Isn't there an easy way, without writing a lot of code, to use a command
button to close form A and open form B?
Randy said:Jack,
'To open a form use:
DoCmd.OpenForm "MyFormName"
'To close one use:
DoCmd.Close acForm, "MyFormName"
You can also use the Add Button Wizard which creates any button for a
large variety of operations, and you don't have to code. With the wizard
you can also specify graphics attached to your buttons. The wizard also
adds error handling code.
-Randy
Jack said:Can't seem to find the wizard...