Acc2003: Magnify report in preview mode?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • planetthoughtful

    Acc2003: Magnify report in preview mode?

    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 programmaticall y, 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,

    planetthoughtfu l
    ---
    "Lost in thought"


  • salad

    #2
    Re: Acc2003: Magnify report in preview mode?

    planetthoughtfu l 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 programmaticall y, 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,
    >
    > planetthoughtfu l
    > ---
    > "Lost in thought"
    > http://www.planetthoughtful.org
    >[/color]
    DoCmd.OpenRepor t "YourReportName ", acViewPreview
    'view at 150%
    DoCmd.RunComman d acCmdZoom150

    Comment

    • planetthoughtful

      #3
      Re: Acc2003: Magnify report in preview mode?

      Hi salad,

      Thank you very much!

      Much warmth,

      planetthoughtfu l

      ---
      "Lost in thought"


      Comment

      Working...