|
-
Mar 11th, 2008, 09:30 AM
#1
Thread Starter
Member
[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
-
Mar 11th, 2008, 12:00 PM
#2
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
-
Mar 12th, 2008, 01:39 AM
#3
Thread Starter
Member
Re: Printing Multiple Copies Of A Report
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
|