|
-
Jul 7th, 2005, 07:54 PM
#1
Thread Starter
Addicted Member
Is this Possible
Is this possible to create a design for a report in Crystal report Version 8.5 that will be printed in a 13 inch long paper ....
tnx in advance!
-
Jul 8th, 2005, 06:57 AM
#2
PowerPoster
Re: Is this Possible
I have a number of reports that are printed on 11 x 14 paper. It runs landscape, but I think it would work portrait also.I design the report, specifying the paper size. When I call the report in my vb app I use:
Set Report = crxApplication.OpenReport("Z:\DAD\DailyProductionSummary.rpt", 1)
For Each crxDatabaseTable In Report.Database.Tables
crxDatabaseTable.ConnectionProperties("user id") = "sa"
crxDatabaseTable.ConnectionProperties("Password") = myPasswordTechniSQL
Next crxDatabaseTable
'-- I have a routine where they select a printer
Report.SelectPrinter glbPrinterDriver, glbPrinterName, glbPrinterPort
Report.PaperOrientation = crLandscape
Report.PaperSize = crPaperLegal
If glbPrinterDestination = 0 Then
glbReportForm = "frmProduction"
CRViewer.Show vbModal
Else
Report.PrintOut False, 5
End If
-
Jul 9th, 2005, 11:21 AM
#3
Thread Starter
Addicted Member
Re: Is this Possible
 Originally Posted by Pasvorto
I have a number of reports that are printed on 11 x 14 paper. It runs landscape, but I think it would work portrait also.I design the report, specifying the paper size. When I call the report in my vb app I use:
Set Report = crxApplication.OpenReport("Z:\DAD\DailyProductionSummary.rpt", 1)
For Each crxDatabaseTable In Report.Database.Tables
crxDatabaseTable.ConnectionProperties("user id") = "sa"
crxDatabaseTable.ConnectionProperties("Password") = myPasswordTechniSQL
Next crxDatabaseTable
'-- I have a routine where they select a printer
Report.SelectPrinter glbPrinterDriver, glbPrinterName, glbPrinterPort
Report.PaperOrientation = crLandscape
Report.PaperSize = crPaperLegal
If glbPrinterDestination = 0 Then
glbReportForm = "frmProduction"
CRViewer.Show vbModal
Else
Report.PrintOut False, 5
End If
Tnx for the reply .... I'll try it tommorow. I'll repost if something goes wrong
-
Jul 11th, 2005, 01:08 PM
#4
Hyperactive Member
Re: Is this Possible
go to the printer set up then in paper size choose manual, then in properties adjust the paper size to "8.5 x 13"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|