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