Open 2 reports side by side

  • Thread starter Thread starter Gary.
  • Start date Start date
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
 
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
 
Back
Top