GetReportPrintJobStatus
Description
Returns the current status of the print job.
This method indicates whether or not the report writing tool has finished generating the report. After this method returns crPrintingCompleted, you can open the generated report file and begin examining the data.
Note: This method is for Windows™ only.
Syntax
VBScript
reportMgr.GetReportPrintJobStatus
Perl
$reportMgr->GetReportPrintJobStatus
();
- Identifier
- Description
- reportMgr
- The ReportMgr object associated with the current session.
- Return value
- An INT corresponding to one of the
tagPrintJobStatus
enumeration constants.enum tagPrintJobStatus { crPrintingNotInitialized = 0 crPrintingNotStarted, crPrintingInProgress, crPrintingCompleted, crPrintingFailed, crPrintingCancelled, crPrintingHalted }