Reports as full screen

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