Print Cr Report Without Preview

This code provide printout CR report/form without preview directly to default
printer and without including CR engine in LN form.

It's simple code may be include in any place of your script, CR runtime files
must be installed on workstation.
Change "c:\Report.rpt" on your report file
Change ("Selection")on your selection formula in format "{FormName.FieldName}=
5"
It's tested on CR7
Set Report = CreateObject("Crystal.CrystalReport")
If Report Is Nothing Then
Messagebox "Crystal Reports Engine is NOT installed on WS",16,"Report
creation ERROR"
Exit Sub
Else
Call Report.Reset
End If

Report.ReportFileName = "c:\Report.rpt"
Call Report.ReplaceSelectionFormula("Selection")
Report.Destination=1
Call Report.PrintReport

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.