We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to open a password-protected *.xlsx?
var Li: integer; Lu: TAbUnZipper; begin Lu := TAbUnZipper.Create(nil); try Lu.ArchiveType := atZip; Lu.ForceType := true; Lu.FileName := FFile; Lu.Password := FPass; for Li := 0 to Lu.Count - 1 do Memo1.Lines.Add(Lu.Items[Li].FileName); finally Lu.Free; end; end;
Without a password the file opens ok:
... but with a password it crashes with an error :(
Project1.zip
The text was updated successfully, but these errors were encountered:
Test.xlsx
Pass: 123
Sorry, something went wrong.
No branches or pull requests
How to open a password-protected *.xlsx?
Without a password the file opens ok:
... but with a password it crashes with an error :(
Project1.zip
The text was updated successfully, but these errors were encountered: