Click to See Complete Forum and Search --> : printer setup


ptaban50
June 16th, 2009, 05:23 AM
Hi

How do I set printer setup icon in crystal report?

Best regards

Peter

jawadhashmi
June 17th, 2009, 03:04 AM
File -> Page Setup -> Printer

ptaban50
June 17th, 2009, 05:18 AM
Hi jawadhashmi,

I would like printer setup icon to show up when I preview the report

Best regards

Peter

jawadhashmi
June 17th, 2009, 06:08 AM
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.

ptaban50
June 17th, 2009, 07:35 AM
Thanks for the reply.

Best regards

Peter

jggtz
June 20th, 2009, 01:23 AM
Visual Basic 6
Crystal Reports 10
Crystal ActiveX Report Viewer
Enable Print Button set to True


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

ptaban50
June 26th, 2009, 09:11 AM
Thanks for the answer, it was very useful.

Best Regards

Peter