ELIstError when using MakeHyperlink procedure

Questions and answers on how to use XLSReadWriteII 5.
Post Reply
d3nton
Posts: 133
Joined: Thu Oct 25, 2012 9:48 am

ELIstError when using MakeHyperlink procedure

Post by d3nton »

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
Post Reply