[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
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
Re: Printing Multiple Copies Of A Report