Chinese German Japanese Korean French Italian Portuguese Spanish
A Site for .NET Smart Device Software Developers
 Feel free to browse the available .NET Smart Device controls & components for the .NET Compact Framework
 All controls have design time support for Visual Studio .NET, 2005 & 2008.
 All controls are written in fully managed code, are royalty free and support is all part of the purchase!
 Why create your own controls when it has been done for you here at a fraction of the cost?

Download Fully Functional Demo







Compact Zip Component


Features:

Properties:
 

UseRootDirectoryInArchive (Use the directory of the
files as the archive root directory)
IncludeSubDirectories
(Recurse sub-directories and
include those in the archive)

Methods:
 
CreateArchive (string InputFileOrDirectory,
string OutputPath)
ExtractArchive (string ArchiveFilePath,
string OutputDirectory)
Classes:
 
ArchiveFileInfoList is populated with ArchiveFileInfo during the call to the constructor (see code below).. easy!
Half the price of comparable products !!!
Fully .zip standard compliant
Easily create & extract .zip archives within the compact framework right there on the Pocket PC device!!!
Very easy to use
Detailed example code included
Royalty FREE software integration
Easy MSI installer takes care of .dll file placement
Control written with fully managed code
Tested for VB .NET & C#
Full design time support
Simply add the control to the tool box and your away!
Instant online delivery...

DOWNLOAD

Download Demo

Buy Binaries ($99.95)
Includes compiled runtime and design time .DLL's

Buy Full Source & Binaries - C# ($249.95)
Includes Visual Studio 2003 & 2005 solutions
to compile runtime and design time .DLL's.

 

Example Code:
 

private void Compress()
{
  CompZip cz = new CompZip();
  cz.CreateArchive(FileSourceDirOrName,DestFilePathAndName);
}

private void DeCompress()
{
  CompZip cz = new CompZip();
  cz.ExtractArchive(FileSourceName,DirDestPath);
}

private void GetArchiveFileList
{
  ArchiveFileInfoList archiveFileInfoList = new
ArchiveFileInfoList(ArchiveFilePathToOpen);

  foreach (ArchiveFileInfo afi in archiveFileInfoList)
  {
    string a = afi.FileName;
    DateTime dt = afi.FileDate;
    long l1 = afi.FileSizeCompressed;
    long l2 = afi.FileSizeUncompressed;
  }
}

   

TOP
Contact Us
©2004-2007 PocketPC Controls.com