Installation instructions for VB.NET

Glossary Item Box

The Xceed Component Installer will copy all the necessary files into the product's installation folder (usually in <Installation Folder>\Xceed Components\Bin\.NET) and place a copy of all the assemblies (Xceed.FileSystem.dll, Xceed.Zip.dll, Xceed.Compression.dll, Xceed.Tar.dll, Xceed.Gzip.dll, and Xceed.Ftp.dll) in the global assembly cache. The only thing left to do in order to begin using Xceed's components is to add the appropriate assemblies to your project, make sure the CopyLocal property of each reference is set to "true" if using a Compact Framework version, and license the product for runtime use. To do this, perform the following steps: 

    • Start Visual Studio 2005
    • On the Start Page, click on the "Project..." link next to "Create:". This can also be done by selecting the "File\New\Project" menu item.
    • Under "Project types", select "Visual Basic > Windows".
    • In the "Templates" section, select the type of application you want to create. If you are using one of Xceed's Compact Framework components, choose Smart Device Application.
    • Enter the name of the project you want to create and the location where it will be created.
    • Click on the "OK" button.

You are now ready to add the necessary assemblies to your project.

Finally, you need to license the components for runtime use. Jump to the Licensing topic for detailed instructions. 

You can then use Imports statement to create aliases for existing namespaces, and avoid having to type the fully qualified type names.

VB.NET Copy Code

Imports Xceed.FileSystem
Imports Xceed.Zip
Imports Xceed.Compression
Imports Xceed.Compression.Formats
Imports Xceed.Tar
Imports Xceed.GZip
Imports Xceed.FTP

Note: This product is only compatible with .NET Framework 2.0. A version compatible with .NET Framework 1.1 is available for download on Xceed’s website (http://xceed.com), but future updates to the .NET 1.1 version will be limited to bugfixes. You cannot install different versions of the full package at the same time. However, if you need work with both .NET 2.0 and .NET 1.1 components, first install the .NET 2.0 package, then install the latest service pack for the .NET 1.1 versions and follow the included instructions.