Imposta il nome del file di output per il report.
È necessario richiamare tale metodo prima di richiamare il metodo ExecuteReport per impostare il nome e l'ubicazione del file di output di report. Specificare le informazioni sul percorso di output nel parametro htmlPathName per inserire il report in un'ubicazione specifica.
$CQReportMgr->SetHTMLFileName("\\Output.html");
È necessario specificare una directory per il file HTML o aggiungere una barra ("\") prima del nome file. Per Perl, utilizzare due barre ("\\"). Ad esempio:
c:\test.html
\test.html
c:\\temp\\my-report.html
\\my-report.html
VBScript
reportMgr.SetHTMLFileName htmlPathName
Perl
$reportMgr->SetHTMLFileName(htmlPathName);