Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/14/18 in all areas

  1. Hi, As the title says, I converted a library that Mike Heydon made to export a DataSet to old format Excel file (xls) without OLE or Excel installed. This library now converts an UniDBGrid to Excel. Sample of usage. // Add uses UExportExcel procedure TMainForm.UniButton1Click(Sender: TObject); var url, filename, reportname : String; exportExcel: TDataSetToExcel; i: integer; begin reportname := 'ExcelReport'; url := UniServerModule.LocalCacheURL+name+'.xls'; filename := UniServerModule.NewCacheFileUrl(false, 'xls', reportname, '', url); exportExcel := TDataSetToExcel.Create(filename); exportExcel.Grid := UniDBGrid1; exportExcel.WriteFile; FreeAndNil(exportExcel); UniSession.SendFile(filename, reportname+'.xls'); end; Hope it helps everyone. UExportExcel.zip
    1 point
  2. Hi guys, I wanted to share with you some of my work, this is a full Facilities Managment System. I hope you like it It still in beta, but very close to the final release. You can also see it in action here : https://byteinmotionapps.com/Facilities4EN/ login : demo pass : demo
    1 point
  3. Hi, there is some way to draw a glyphicon? function beforeInit(sender, config) { config.baseCls="btn"; config.cls="btn-danger"; config.cls="glyphicon glyphicon-search"; } Thanks.
    1 point
×
×
  • Create New...