Hello
Here is an example:
ExportDBGridEhToOleExcel(DBGridEh1, [], True);
Here is declaration of ExportDBGridEhToOleExcel:
Code:
function ExportDBGridEhToOleExcel(DBGridEh: TCustomDBGridEh;
Options: TDBGridEhExportAsOLEXLSOptions; IsSaveAll: Boolean = True): Variant;
type
TDBGridEhExportAsOLEXLSOption = (oxlsColoredEh, oxlsDataAsDisplayText,
oxlsDataAsEditText);
TDBGridEhExportAsOLEXLSOptions = set of TDBGridEhExportAsOLEXLSOption;
function returns Instance of Excel.Application created by CreateOleObject('Excel.Application') function.
So you can perform addidtion action after creation data.
Best regards
Admin.