Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crystal Reports 8.5 portrait and landscape pages

Status
Not open for further replies.

Tailgun

Technical User
Mar 30, 2002
417
US
Is it possible using 8.5 in one report to have the first page landscape and the remainding pages portrait ?
 
Not using crystal as a stand alone tool. I believe this would be possible is you are using the developer edition of crystal 8.5 and are using the RDC in a VB project.

Software Sales, Training, Implementation and Support for Exact Macola, eSynergy, and Crystal Reports
 
Yes I'm using the dev edition of Crystal Reports 8.5 and Visual Studio 6 sp 5
 
dgillz any idea how I can do this with the dev edition? That's what I'm using with VB6
 
I'm not sure if it can be done in the viewer, but it could be sent to the printer like this:
Code:
    crxRpt.PaperOrientation = crLandscape
    crxRpt.PrintOut False, 1, , 1, 1

    crxRpt.PaperOrientation = crPortrait
    crxRpt.PrintOut False, 1, , 2
-dave
 
Thanks vidru I think that might do the trick. I was hoping the user could view it but at least this way I can print it.

Thanks again
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top