Results 1 to 4 of 4

Thread: Is this Possible

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Oct 2004
    Location
    Philippines
    Posts
    149

    Question 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!

  2. #2
    PowerPoster Pasvorto's Avatar
    Join Date
    Oct 2002
    Location
    Minnesota, USA
    Posts
    2,951

    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

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Oct 2004
    Location
    Philippines
    Posts
    149

    Re: Is this Possible

    Quote 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

  4. #4
    Hyperactive Member
    Join Date
    Mar 2005
    Location
    Manila, Philippines
    Posts
    486

    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
  •  



Click Here to Expand Forum to Full Width