Just evaluating XLSReadWriteII 5 and have run into the following issue:
Consider the following code:
Code: Select all
XLS.Add;
XLS.Sheets[1].Name := 'Test new sheet';
XLS.Sheets[1].AsString[0, 1] := 'Dummy String for testing';
XLS.Sheets[1].Rows[1].FontStyle := [xfsItalic];
XLS.FileName := 'C:\DummyFileName.xlsx';
XLS.Write;
Thanks!
Kaye.