Search found 1 match

by TXDelphi
Wed Oct 07, 2015 5:10 pm
Forum: XLSReadWriteII 3/4/5
Topic: How can i open and read a protected *.xls
Replies: 4
Views: 11892

Re: How can i open and read a protected *.xls


var xlsto:TXLSReadWriteII4;
begin
xlsto:=TXLSReadWriteII4.Create(xlsto);
xlsto.Filename:='c:\t.xlsx';
xlsto.Password:='aaa';
xlsto.Read;
ShowMessage(IntToStr(xlsto.Sheets.Count));
xlsto.Free;
end;

Having same problem in XE3 is there a fix or workaround?

Thanks