Re: Program Launcher Help
ICSharpCode.SharpZipLib.Zip is a .dll, its used as a reference to the main source. I have the dll compiled and set as a internal reference in the source, and still got the main source.
Going by what I think you mean, the return type is a strong, but i know it needs 3 arguments unless it gives me an error. And i'm still completely new at all this, I have no idea how to check the return type, the thing is though it seems to get to the point and then just stop most of the time, without giving an error or a reason for stopping.
Also I have looked at the coding examples they provided from the source on how to do the extraction setup, and they had like 7 arguments in it, all where just nulled out strings.
Re: Program Launcher Help
Is the dll written in VC++ or C# ?
If you have source of the Zip dll then why dont you pass the correct paramters by looking at the code ?
Re: Program Launcher Help
i'm going to say c# cause i had to open the files it was made out of in MS Visual C# and build the project in order to get the .dll, and I have everything they used is bs cause its all nulled out, it was just an example taht was never meant to work.
Edit: Ok I think I found something, this is what they have, i'm testing it right now:
Code:
string tempFilePath = GetTempFilePath();
Assert.IsNotNull(tempFilePath, "No permission to execute this test?");
string addFile = Path.Combine(tempFilePath, "test.zip");
try
{
fastZip.ExtractZip(addFile, @"z:\doesnt exist", null);
}
finally
{
File.Delete(addFile);
}