[
  {
    "Id": "246095",
    "ThreadId": "72110",
    "Html": "<p>Ok i downloaded the developers package.</p>\r\n<p>&nbsp;</p>\r\n<p>I added a reference to the project from the RELEASE subdirectory.</p>\r\n<p>&nbsp;</p>\r\n<p>I used the following code</p>\r\n<p>&nbsp;</p>\r\n<pre><div style=\"color:Black;background-color:White\"><pre><span style=\"color:Blue\">Imports</span> Ionic.Zip<br><br><span style=\"color:Blue\">Dim</span> ZipToUnpack <span style=\"color:Blue\">As</span> <span style=\"color:Blue\">String</span> = <span style=\"color:#A31515\">&quot;C:\\Documents and Settings\\&Iota;&Omega;&Alpha;&Nu;&Nu;&Eta;&Sigma;\\&Epsilon;&pi;&iota;&phi;ά&nu;&epsilon;&iota;&alpha; &epsilon;&rho;&gamma;&alpha;&sigma;ί&alpha;&sigmaf;\\TEMPSUUNTO\\divelogs.zip&quot;</span>\r\n        <span style=\"color:Blue\">Dim</span> TargetDir <span style=\"color:Blue\">As</span> <span style=\"color:Blue\">String</span> = <span style=\"color:#A31515\">&quot;C:\\Documents and Settings\\&Iota;&Omega;&Alpha;&Nu;&Nu;&Eta;&Sigma;\\&Epsilon;&pi;&iota;&phi;ά&nu;&epsilon;&iota;&alpha; &epsilon;&rho;&gamma;&alpha;&sigma;ί&alpha;&sigmaf;\\TEMPSUUNTO\\&quot;</span>\r\n        Console.WriteLine(<span style=\"color:#A31515\">&quot;Extracting file {0} to {1}&quot;</span>, ZipToUnpack, TargetDir)<br>        <span style=\"color:Blue\">Using</span> zip1 <span style=\"color:Blue\">As</span> ZipFile = ZipFile.Read(ZipToUnpack)<br>            <span style=\"color:Blue\">AddHandler</span> zip1.ExtractProgress, <span style=\"color:Blue\">AddressOf</span> <strong>MyExtractProgress<br></strong>            <span style=\"color:Blue\">Dim</span> <strong>e</strong> <span style=\"color:Blue\">As</span> ZipEntry<br>            <span style=\"color:Green\">' here, we extract every entry, but we could extract    </span>\r\n            <span style=\"color:Green\">' based on entry name, size, date, etc.   </span>\r\n            <span style=\"color:Blue\">For</span> <span style=\"color:Blue\">Each</span> e <span style=\"color:Blue\">In</span> zip1<br>                e.Extract(TargetDir, ExtractExistingFileAction.OverwriteSilently)<br>            <span style=\"color:Blue\">Next</span>\r\n        <span style=\"color:Blue\">End</span> <span style=\"color:Blue\">Using</span>\r\n</pre>\r\n</div>\r\n<br>The following errors came up<br><br>Error&nbsp;&nbsp; &nbsp;1&nbsp;&nbsp; &nbsp;Name 'MyExtractProgress' is not declared.&nbsp;&nbsp; &nbsp;<br>C:\\Documents and Settings\\&Iota;&Omega;&Alpha;&Nu;&Nu;&Eta;&Sigma;\\Local Settings\\Application Data\\Temporary Projects\\WindowsApplication1\\Form1.vb&nbsp;&nbsp; &nbsp;10&nbsp;&nbsp; &nbsp;56&nbsp;&nbsp; &nbsp;WindowsApplication1<br><br>Error&nbsp;&nbsp; &nbsp;2&nbsp;&nbsp; &nbsp;Variable 'e' hides a variable in an enclosing block.<br>C:\\Documents and Settings\\&Iota;&Omega;&Alpha;&Nu;&Nu;&Eta;&Sigma;\\Local Settings\\Application Data\\Temporary Projects\\WindowsApplication1\\Form1.vb&nbsp;&nbsp; &nbsp;11&nbsp;&nbsp; &nbsp;17&nbsp;&nbsp; &nbsp;WindowsApplication1<br><br>Can i have some help ?<br><br>Thanks</pre>\r\n<p>&nbsp;</p>",
    "PostedDate": "2009-10-15T08:48:09.347-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "246249",
    "ThreadId": "72110",
    "Html": "<table border=0 width=800>\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p>These are not errors with DotNetZip.&nbsp;These are basic VB coding issues, nothing to do specifically with DotNetZip.</p>\r\n<p>The error about 'MyExtractProgress' means you have to define a Sub with that name.&nbsp;</p>\r\n<p>The error about &quot;e hides a variable' means your Function or Sub already has a variable by the name of e.&nbsp; (Probably an EventArgs variable).&nbsp; You can only have one variable named e.&nbsp; You have to rename one of them.</p>\r\n<p>The best I can advise is to keep working on it yourself - you'll need to figure these compilation error&nbsp;things out on your own. Maybe get a book that covers this stuff.</p>\r\n<p>&nbsp;</p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>",
    "PostedDate": "2009-10-15T14:31:45.193-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  },
  {
    "Id": "246383",
    "ThreadId": "72110",
    "Html": "<p>Yes i fixed them 5 minutes after i posted.The e variable issue was, because i put the code in a button event which already has an e variable declare.</p>\r\n<p>&nbsp;</p>\r\n<p>Thanks.</p>",
    "PostedDate": "2009-10-15T23:08:04.657-07:00",
    "UserRole": null,
    "MarkedAsAnswerDate": null
  }
]