Create a Background Schedule to Run Crystal Reports
In iFIX, you can create a background schedule that runs Crystal reports. This topic contains a sample Visual Basic code to create a background schedule:
Private ReportFileName
Private CrystalReport
Private Sub KKTimer_OnTimeOut(ByVal lTimerId As Long)
Set CrystalApplication = CreateObject("Crystal.CRPE.Application")
Set CrystalReport = CrystalApplication.OpenReport("C:\Program Files (x86)\GE\iFIX\APP\RTtemplate.rpt") CrystalReport.Printout False
Set CrystalReport = Nothing
Set CrystalApplication = Nothing
End Sub