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 .... :confused:
tnx in advance!
Printable View
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 .... :confused:
tnx in advance!
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 :bigyello:Quote:
Originally Posted by Pasvorto
go to the printer set up then in paper size choose manual, then in properties adjust the paper size to "8.5 x 13"