Frank,
Sorry for the minimalist response before.
If you want to use a macro, make a macro with a Maximize action,
followed by a RunCommand action, and then in the Command argument box
for the RunCommand action enter Zoom75%. Save and name the macro, and
then enter the macro name in the On Activate property of the report.
If you want to use a VBA procedure instead, enter [Event Procedure] in
the report's On Activate property, and then click the little button to
the right with the ... which will open the Visual Basic Editor window,
with the cursor already placed in a suitable position. So make it like
this...
Private Sub Report_Activate()
DoCmd.Maximize
DoCmd.RunCommand acCmdZoom75
End Sub
- Steve Schapel, Microsoft Access MVP
Hi Steve,
Thanks for responding to my inquiry regarding resizing
reports. Your response included just the resizing piece,
rather than the combination of resize and maximize. In
addition, when I enter "DoCmd.RunCommand acCmdZoom75" into
the On Activate field in the report properties, I get an
error that "Access can't find the macro "DoCmd" ".
Can you help further?
Thanks.
Frank