码迷,mamicode.com
首页 > 其他好文 > 详细

UNIGUI下载文件

时间:2018-03-11 11:47:48      阅读:559      评论:0      收藏:0      [点我收藏+]

标签:class   exp   set   excel   gui   nal   string   sheet   file   

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;

UNIGUI下载文件

标签:class   exp   set   excel   gui   nal   string   sheet   file   

原文地址:https://www.cnblogs.com/hnxxcxg/p/8543100.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!