TXlsFile not released?

It seems that when I execute the following code the TXlsFile object is NOT released, even though the object is destroyed at the end. 

stream := TStringStream.Create(<a TAB delimited string data table >);
 xls := TXlsFile.Create(True);
 xls.NewFile(1);
xls.PasteFromTextClipboardFormat(1, 1, TFlxInsertMode.NoneDown, stream.DataString);
xls.Save('c:\test.xlsx');
xls.Free;
stream.Free;

Regards,
Stephan


Hi,

Thanks for reporting this, we've already fixed it here, and will be releasing a new version with this fixed very soon. We are looking also into supporting the new xlsx file format introduced in office 15, so this might take a couple of days, so if you need it urgently please send me an email to adrian@tmssoftware.com and we will make a beta available for you.

Regards,
   Adrian.

Hi Adrian,


no problem. I can wait. I'll reverse back to version 3 for the moment.

Regards,
Stephan