I know this has been asked before but everything I can find points to the same solution in the codebank

http://www.vbforums.com/showthread.p...ghlight=ziplib

Well I tried this solution and after running the conversion wizard to convert it to 2005 instead of 2003 that it comes with I get a huge list of errors. They are probably easy to fix errors but I'm just starting with VB .Net (finally) and I'm not very fluent in it yet. I'm starting small in VB .NET and trying to write a file browser program that will allow me to look through some files I have and preview webpages stored in those files.

I have to have the ability to unzip files because some of these folders contain zipped files that have to be unzipped in order to view the wepage zipped there.

So anyway on to the problem... When I try to work with this file, I add the reference to the #ziplib library and these are the errors I have left and cannot build the library due to it.

Code:
Error	2	Option Strict On disallows implicit conversions from 'Long' to 'Integer'.	C:\Users\Steven Hickerson\Downloads\VB\Wunnell.IO 1.0.0.1\Wunnell.IO\Wunnell.IO\Zip.vb	326	32	Wunnell.IO
Error	3	Option Strict On disallows implicit conversions from 'Boolean' to 'String'.	C:\Users\Steven Hickerson\Downloads\VB\Wunnell.IO 1.0.0.1\Wunnell.IO\Wunnell.IO\Zip.vb	551	55	Wunnell.IO
Error	4	Option Strict On disallows implicit conversions from 'Boolean' to 'String'.	C:\Users\Steven Hickerson\Downloads\VB\Wunnell.IO 1.0.0.1\Wunnell.IO\Wunnell.IO\Zip.vb	586	55	Wunnell.IO
Error	5	Overload resolution failed because no accessible 'New' accepts this number of arguments.	C:\Users\Steven Hickerson\Downloads\VB\Wunnell.IO 1.0.0.1\Wunnell.IO\Wunnell.IO\Zip.vb	649	33	Wunnell.IO
Error	6	Option Strict On disallows implicit conversions from 'Boolean' to 'String'.	C:\Users\Steven Hickerson\Downloads\VB\Wunnell.IO 1.0.0.1\Wunnell.IO\Wunnell.IO\Zip.vb	651	54	Wunnell.IO
Error	7	Option Strict On disallows implicit conversions from 'Boolean' to 'String'.	C:\Users\Steven Hickerson\Downloads\VB\Wunnell.IO 1.0.0.1\Wunnell.IO\Wunnell.IO\Zip.vb	691	55	Wunnell.IO
Error	8	Overload resolution failed because no accessible 'New' accepts this number of arguments.	C:\Users\Steven Hickerson\Downloads\VB\Wunnell.IO 1.0.0.1\Wunnell.IO\Wunnell.IO\Zip.vb	746	33	Wunnell.IO
Error	9	Option Strict On disallows implicit conversions from 'Boolean' to 'String'.	C:\Users\Steven Hickerson\Downloads\VB\Wunnell.IO 1.0.0.1\Wunnell.IO\Wunnell.IO\Zip.vb	748	54	Wunnell.IO
Can anyone give me a hand in getting this up and running?

Thanks!