Hi
How do I set printer setup icon in crystal report?
Best regards
Peter
Printable View
Hi
How do I set printer setup icon in crystal report?
Best regards
Peter
File -> Page Setup -> Printer
Hi jawadhashmi,
I would like printer setup icon to show up when I preview the report
Best regards
Peter
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.
Thanks for the reply.
Best regards
Peter
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
Thanks for the answer, it was very useful.
Best Regards
Peter