sangleen@hotmail.com Guest
|
Posted: Tue Aug 02, 2005 8:33 pm Post subject: Do I have to free WorkBooks? |
|
|
Hi.
I'm using the code below to print a report.
Do I have to free something after printing?
XLApp:= CreateOleObject('Excel.Application');
XLApp.Workbooks.Add('C:TempProducts Details.xls');
XLApp.Workbooks[1].WorkSheets[1].Name := 'Products';
Sheet := XLApp.Workbooks[1].WorkSheets[1];
Thanks.
|
|