Reports as full screen

T

Tony Williams

Is it possible when opening a report to show it as a full screen similar to
a PowerPoint presentation?
If so where would I start?
Thanks
Tony
 
R

Rick Brandt

Tony said:
Is it possible when opening a report to show it as a full screen
similar to a PowerPoint presentation?
If so where would I start?
Thanks
Tony

You can execute code in the Report's Open event to maximize the window.

DoCmd.Maximize

You might them want...

DoCmd.Restore

....in the Close event as well. That will not really give you the same "full
screen" effect as a power point slide show, but there is no view of an
Access report that will give you that.
 
T

Tony Williams

Thanks Rick
Tony
Rick Brandt said:
You can execute code in the Report's Open event to maximize the window.

DoCmd.Maximize

You might them want...

DoCmd.Restore

...in the Close event as well. That will not really give you the same
"full screen" effect as a power point slide show, but there is no view of
an Access report that will give you that.
 

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