Hi.
I got another problem when trying to create a hyperlink via makehyperlink:
using the code below results in a EListError (XLSReadWrite 5.10.12):
var
ExcelFile5 : TXLSReadWriteII5;
begin
ExcelFile5 := TXLSReadWriteII5.Create(nil);
ExcelFile5.Filename := 'D:\output.xlsx';
ExcelFile5.Sheets[0].Name := 'test';
ExcelFile5.Sheets[0].MakeHyperlink(0,0,'C:\Windows\', 'C:\Windows\');
ExcelFile5.Write;
end.
Any help would be appreciated.
Greetz d3nton