Open 2 reports side by side

G

Gary.

I have a form with a command button on it when the button is pressed it
opens 2 reports
How do I get the 2 reports to open side by side on the screen?
Thanks
 
D

Damon Heron

Use the reports' load events to specify where on screen to place --

Private Sub Report_Load()
DoCmd.MoveSize 6900, 0, 4320, 6840
End Sub

first number is distance in twips (1440/inch) from right, second num twips
down,
third num is width, fourth is height. you can omit the last two numbers if
you want.
Do this for each report, changing first number as needed.

Damon
 

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