Hello,
I've created a simple xlsx file, but when I press print in Excel 2010 (or print preview in Excel 2007) the Excel stops responding.
I've sent the sample file to your e-mail address, please take a look at it.
Thanks
Tamas
Error printing xlsx
Re: Error printing xlsx
Hello
I agree that your file gives the error. Please provide a code sample that produces the file.
I agree that your file gives the error. Please provide a code sample that produces the file.
Lars Arvidsson, Axolot Data
Re: Error printing xlsx
Hello Lars,
The code is just about opening and saving an xlsx file:
I sent the project to you in e-mail with the source and output Excel files.
The code is just about opening and saving an xlsx file:
Code: Select all
XLS := TXLSReadWriteII5.Create(nil);
try
XLS.Filename := 'Temp.xlsx';
XLS.Read;
XLS.Version := xvExcel2007;
XLS.Filename := 'Out.xlsx';
XLS.Write;
finally
FreeAndNil(XLS);
end;
Re: Error printing xlsx
Hello
The file test.xlsx, was it not created with XLSReadWriteII?
The file test.xlsx, was it not created with XLSReadWriteII?
Lars Arvidsson, Axolot Data
Re: Error printing xlsx
Hello Lars,
No, the original file was created with Excel 2010.
(Sample project resent.)
No, the original file was created with Excel 2010.
(Sample project resent.)