請問要如何控制Crystal Report的匯出檔案格式及檔名?
//CHIP_Style1為CHIP_Style.rpt
CHIP_Style1.SetDataSource(Master.RealDataSet);
setReportParameter(CHIP_Style1, REPORT_STYLE);

//由ExportToDisk該方法產生
//第一參數為產出格式,第二參數為產出之路徑檔名
CHIP_Style1.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.WordForWindows, tOutFile.ToString());