Results 1 to 3 of 3

Thread: [RESOLVED] Printing Multiple Copies Of A Report

  1. #1

    Thread Starter
    Member
    Join Date
    May 2007
    Location
    Delhi
    Posts
    34

    Resolved [RESOLVED] Printing Multiple Copies Of A Report

    Sir,

    I am using Crystal Report 8.5.

    I show a report using CRViewer Control from VB using crystal report designer.

    I want to print more than one copy (fix number of copies, let say 3) of a page whenever user click the print button.

    Please help me.

    With Thanx/Regards,
    Manish

  2. #2
    PowerPoster
    Join Date
    Oct 2002
    Location
    British Columbia
    Posts
    9,758

    Re: Printing Multiple Copies Of A Report

    Here is one option

    Code:
    Private Sub CRViewer1_PrintButtonClicked(UseDefault As Boolean)
        Dim objReport As CRAXDRT.Report
        
        Set objReport = CRViewer1.ReportSource
        
        objReport.PrintOut False, 3
    
        UseDefault = False
    
    End Sub

  3. #3

    Thread Starter
    Member
    Join Date
    May 2007
    Location
    Delhi
    Posts
    34

    Resolved Re: Printing Multiple Copies Of A Report

    Many Thanx.

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