Display two pages at once.

  • Thread starter Thread starter Frank Martin
  • Start date Start date
F

Frank Martin

I now have a wide-screen monitor.

How can I make Access2003 default to showing (displaying)
two pages, side by side, on the screen .

I can do this manually, but I need it automatically.

Please help, Frank
 
I now have a wide-screen monitor.

How can I make Access2003 default to showing (displaying)
two pages, side by side, on the screen .

I can do this manually, but I need it automatically.

Please help, Frank

You can use code if you open the report from a form event.

DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCmdPreviewTwoPages
 
fredg said:
You can use code if you open the report from a form event.

DoCmd.OpenReport "ReportName", acViewPreview
DoCmd.RunCommand acCmdPreviewTwoPages

Thanks, this worked fine.
Regards, Frank
 
Back
Top