-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
7-zip dll not found #6
Comments
README says
. . . and has a link to 7-zip SDK. It also says
|
I just registered 7-zip.dll with the command (regsvr32 7-zip.dll) and then it started working. But, when I created a distributable package using "Package & Development Wizard" and run the Project1.exe, it again started generating this error (7-zip dll not found). Any solution or commend please? |
You don't need to register Just copy Note that you might need earlier version of |
I am really thankful for the guidance. I just used the 7z.dll from version 9.22 and now it is working. 7z.dll from the latest version causes problem sometime. |
I simply run the following codes, but at 5th line it is generating this error (7-zip dll not found):
1 With New cVszArchive
2 .AddFile App.Path & "\Form1.frm"
3 .AddFile App.Path & "\Project1.vbp"
4 .Parameter("x") = 3 '-- CompressionLevel = Fast
5 .CompressArchive (App.Path & "\test.7z")
6 End With7
MsgBox "test.7z created ok", vbExclamation
Why it's and what is the solution?
The text was updated successfully, but these errors were encountered: