Connecting Tech Pros Worldwide Help | Site Map

Acc2003: Magnify report in preview mode?

  #1  
Old March 12th, 2006, 08:15 PM
planetthoughtful
Guest
 
Posts: n/a
Hi All,

Can anyone tell me if there's a way to magnify reports in preview mode
through code? I use reports in preview mode to provide an overview of
subrecords etc associated with records in my main table. However, when
I open a report programmatically, even when I automatically maximize
the report, the text always seems to appear at less than 100%
magnification. I'm wondering if there's a way to change that at the
time the report is opened?

Any help appreciated.

Much warmth,

planetthoughtful
---
"Lost in thought"
http://www.planetthoughtful.org

  #2  
Old March 12th, 2006, 09:05 PM
salad
Guest
 
Posts: n/a

re: Acc2003: Magnify report in preview mode?


planetthoughtful wrote:
[color=blue]
> Hi All,
>
> Can anyone tell me if there's a way to magnify reports in preview mode
> through code? I use reports in preview mode to provide an overview of
> subrecords etc associated with records in my main table. However, when
> I open a report programmatically, even when I automatically maximize
> the report, the text always seems to appear at less than 100%
> magnification. I'm wondering if there's a way to change that at the
> time the report is opened?
>
> Any help appreciated.
>
> Much warmth,
>
> planetthoughtful
> ---
> "Lost in thought"
> http://www.planetthoughtful.org
>[/color]
DoCmd.OpenReport "YourReportName", acViewPreview
'view at 150%
DoCmd.RunCommand acCmdZoom150
  #3  
Old March 13th, 2006, 02:15 AM
planetthoughtful
Guest
 
Posts: n/a

re: Acc2003: Magnify report in preview mode?


Hi salad,

Thank you very much!

Much warmth,

planetthoughtful

---
"Lost in thought"
http://www.planetthoughtful.org

Closed Thread