FastReport 打印和导出 Excel、Word 等

// 添加 frxReport 控件和 frxXLSExport 控件,设置好 frxReport 的报表内容,照如下执行

 

// 直接输出到打印机,没有提示框

frxReport1->PrintOptions->ShowDialog = false;
frxReport1->PrepareReport(true);
frxReport1->Print();

 

// 导出到 Excel 文档, 其他还可以导出 RTF, BMP 等等,代码相似

frxXLSExport1->ShowDialog = false;
frxXLSExport1->FileName = "Filename1.xls";
frxReport1->PrepareReport(true);
frxReport1->Export(frxXLSExport1);

 

 

// 导出后以默认方式打开文档

ShellExecute(Handle, "open", "c://filename1.xls", NULL, NULL, SW_SHOW);

你可能感兴趣的:(c,Excel,null,文档,报表,rtf)