Wrox Home  
Search P2P Archive for: Go

  Return to Index  

access thread: How to maximze report size when it opens?


Message #1 by "Joseph Valdez" <e-valdez@a...> on Sun, 16 Mar 2003 22:56:15 -0800
I want the report screen max out to the PC screen when it opens. How to do
that?

Thanks-

Message #2 by "Steve Klein" <Stephen@K...> on Mon, 17 Mar 2003 05:02:52 -0000
on open event:

	docmd.maximize

Steve K


-----Original Message-----
From: Joseph Valdez [mailto:e-valdez@a...]
Sent: 17 March 2003 06:56
To: Access
Subject: [access] How to maximze report size when it opens?


I want the report screen max out to the PC screen when it opens. How to do
that?

Thanks-




Message #3 by "Joseph Valdez" <e-valdez@a...> on Mon, 17 Mar 2003 00:31:14 -0800

-----Original Message-----
From: Steve Klein [mailto:Stephen@K...]
Sent: Sunday, March 16, 2003 9:03 PM
To: Access
Subject: [access] RE: How to maximze report size when it opens?


on open event:

	docmd.maximize

Steve K


-----Original Message-----
From: Joseph Valdez [mailto:e-valdez@a...]
Sent: 17 March 2003 06:56
To: Access
Subject: [access] How to maximze report size when it opens?


I want the report screen max out to the PC screen when it opens. How to do
that?

Thanks-







Message #4 by "Bob Orta" <boborta@r...> on Mon, 17 Mar 2003 15:10:12
This works good:

    With DoCmd
        .OpenReport "rptExtSetup", acViewPreview
        .RunCommand acCmdZoom100
        .Maximize
    End With
Message #5 by "Clive Astley" <clive.astley@k...> on Mon, 17 Mar 2003 19:57:00
When you've finished with your maximized report you may wish to put 
everything back by using the following in the On Close event:

    DoCmd.Restore



> I want the report screen max out to the PC screen when it opens. How to 
do
that?

Thanks-

Message #6 by "Joseph Valdez" <e-valdez@a...> on Mon, 17 Mar 2003 14:45:07 -0600
 I am getting an error "acCmdzoom100 not available"

-----Original Message-----
From: Bob Orta [mailto:boborta@r...]
Sent: Monday, March 17, 2003 5:10 PM
To: Access
Subject: [access] Re: How to maximze report size when it opens?


This works good:

    With DoCmd
        .OpenReport "rptExtSetup", acViewPreview
        .RunCommand acCmdZoom100
        .Maximize
    End With



  Return to Index