void ReportIsAlive(string filename);
Check if the reporter file is currently running.
Parameters
string filename - he name of the reporter file to be displayed (e.g. "ex.rptx");
Return Value
A return value of 1 means that the reporter is currently running, and a value of 0 means that the reporter is not running.
Example1
retn = @ReportIsAlive("test.rptx");
if(retn == 1) {
@Message("test.rptx reporter module is now running.");
}
else {
@Message("test.rptx reporter module is not currently running.");
}
Description : It checks if the test.rptx reporter module is running and displays the corresponding message.
Version Information
Supported Version: 10.3.6.17 or higher
Related Helps