Resolved: Opening an Access form from within another Access form.
Hello all,
Ok here is my problem. I have a main form and a secondary form both built in Access. When I start my Main form I want my secondary form to appear on top of it. When I try frm_formname.show within the mainform code I get an error saying that .show is not a valid command. So what is the proper code? Thanks very much for your help!
Re: Opening an Access form from within another Access form.
DoCmd.OpenForm "frmYourFormNameHere" 'optional arguments available
However, to close a form, use:
DoCmd.Close acForm, "frmYourFormNameHere"
Re: Resolved: Opening an Access form from within another Access form.