OpenForm magified in a larger window

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi ya'll,
Just wondering, is there any way to open a Report, already magnified and already in a larger window?
Would this be something I might do if I got and got into Visual Basic or C#.NET and made simple add-ins? Wouldn't they be .dlls or .coms?
 
Jim said:
Just wondering, is there any way to open a Report, already magnified and already in a larger window?
Would this be something I might do if I got and got into Visual Basic or C#.NET and made simple add-ins? Wouldn't they be .dlls or .coms?


If you use code to open the report, then yes.

. . .
DoCmd.OpenReport . . .
DoCmd.Maximize
DoCmd.RunCommand acCmdZoom150

Check Help for RunCommand constants to see the various Zoom
values that can be used (there are several).
 
I have a form restored down to small box that lists reports to open. I used
the maximize window command when opening the report, which is great, but it
also maximizes the form when the report is closed. How do I get the form to
automatically set back to its original size after closing the report?

Jon
 
Back
Top