delphi
tianpeiyu
这个作者很懒,什么都没留下…
展开
-
delphi 7 cxgrid 导出
uses cxGridExportLinkExportGridToExcel('*.xls', cxgrid1, True, true);ExportGridToHTML('*.html', cxgrid1, True, true);ExportGridToXML('*.xml', cxgrid1, True, true);ExportGridToTEXT('*.txt', cxg原创 2012-02-25 14:59:59 · 520 阅读 · 0 评论 -
实现ListBox内容作为SQL查询条件
var S:String; i:Integer;begin S:=''; fori := 0 to ListBox1.Items.Count -1 do begin ifS = '' then S := QuotedStr(ListBox1.Items[i]) else S :=原创 2012-12-04 14:19:16 · 632 阅读 · 0 评论