Display two pages at once.

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
 
F

fredg

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
 
F

Frank Martin

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
 

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