I use OLE method like this:
var
xlApp, xlWorkBook, xlWorkSheet, arr: Variant;
begin
xlApp := CreateOLEObject('Excel.Application');
xlApp.Visible := True;
end;
How to add a button to Excel?
And how to assign a exist marco on this button?
Where can I find Delphi-OLE-Office document?
Thx.