Hello. I have a form, Form2, which I want to appear in a certain part of the screen. I want this to happen because I eventually want the form to be launched from code in another form (Form3)'s code file, and I want form3 to still be visible when form2 appears. I have been using design view on form2, but I have adjusted every format property which seems relevant, and I move form2 down to the lower left of the screen in Design View before I close it, but every time I double click on Form2 at the command screen it always appears near the center of the screen.
The normal command in VBA I use to launch a form is
DoCmd.OpenForm "Form2"
Is there a modified version of this command that I could use to have the form open in a certain part of the screen? If not, is there a way I could change Form2's properties to have it appear at a certain place on the screen when it opens?
Thanks in advance