|
-
June 16th, 2009, 04:23 AM
#1
printer setup
Hi
How do I set printer setup icon in crystal report?
Best regards
Peter
Last edited by ptaban50; June 17th, 2009 at 04:22 AM.
-
June 17th, 2009, 02:04 AM
#2
Re: printer setup
File -> Page Setup -> Printer
-
June 17th, 2009, 04:18 AM
#3
Re: printer setup
Hi jawadhashmi,
I would like printer setup icon to show up when I preview the report
Best regards
Peter
-
June 17th, 2009, 05:08 AM
#4
Re: printer setup
sorry dear I have no idea about that.
I think you can set the properties of the tool bar you are using.
Dear just google how to customize the crystal report viewer toolbar.
-
June 17th, 2009, 06:35 AM
#5
Re: printer setup
Thanks for the reply.
Best regards
Peter
-
June 20th, 2009, 12:23 AM
#6
Re: printer setup
Visual Basic 6
Crystal Reports 10
Crystal ActiveX Report Viewer
Enable Print Button set to True
Code:
Private Sub CRViewer1_PrintButtonClicked(UseDefault As Boolean)
UseDefault = CRReport.PrinterSetupEx(hWnd)
If UseDefault = False Then
DoEvents
CRViewer1.PrintReport
Else
MsgBox "Printing was Canceled...", vbInformation, "Report print"
End If
End Sub
-
June 26th, 2009, 08:11 AM
#7
Re: printer setup
Thanks for the answer, it was very useful.
Best Regards
Peter
Tags for this Thread
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
|