UNIGUI下载文件
UNIGUI下载文件
procedure exportXLS(dataset: TDataSet);
var
xls: TDataset2Excel;
f: string;
begin
if dataset = nil then
Exit;
f := '1.xls';
xls := TDataset2Excel.Create(nil);
try
xls.Dataset := dataset;
xls.WorksheetName := '1';
xls.SaveDatasetAs(f);
xls.Workbook := nil;
MainForm.uniApplication.UniSession.SendFile(f, f);
finally
xls.Free;
end;
end;
本文来自博客园,作者:{咏南中间件},转载请注明原文链接:https://www.cnblogs.com/hnxxcxg/p/8543100.html