Visible two forms

J

John

I have two forms open at the same time as the code.

StDocName1 = "Forms1"
StDocName2 = "Form2"
DoCmd.OpenForm stDocName2, , , stLinkCriteria
DoCmd.OpenForm stDocName1, , , stLinkCriteria

For the form2 it set to Maximum and the Form1 is small as
1/4 size of the Form2. When it open the Form1 is active
first. When I click on Form2, I don't want Form1 to be
minimize. I would like to be able to see two form at the
same time. It doesn't matter what for I click on. How Can
I do that?

Any help woud be very appreciated.
 
G

Guest

Make one form bigger than the other in its design, and then set both of them to autcenter=true. Do not maximise either form

----- John wrote: ----

I have two forms open at the same time as the code

StDocName1 = "Forms1
StDocName2 = "Form2
DoCmd.OpenForm stDocName2, , , stLinkCriteri
DoCmd.OpenForm stDocName1, , , stLinkCriteri

For the form2 it set to Maximum and the Form1 is small as
1/4 size of the Form2. When it open the Form1 is active
first. When I click on Form2, I don't want Form1 to be
minimize. I would like to be able to see two form at the
same time. It doesn't matter what for I click on. How Can
I do that

Any help woud be very appreciated
 
J

John

Yes, I had set one form bigger then the other and both are
Autocenter = true. But when I click on the bigger form the
small form is minimize down to the window task bar. I do
not want the small form to be minimize to the Window task
bar. I want both form visible.
-----Original Message-----
Make one form bigger than the other in its design, and
then set both of them to autcenter=true. Do not maximise
either form.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top