FoxPro Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

Visual FoxPro Examples

Bounced Mail
Character Encoding
Digital Certificates
Digital Signatures
Email
FTP
HTML-to-XML
HTTP
IMAP
Encryption
MHT / HTML Email
RSA Encryption
S/MIME
Socket
Spider
String
Tar
Upload
XML
XMP
Zip Compression
Self-Extractor

More Examples...
Email Object
POP3
SMTP
RSS
Atom
Byte Array
Service
PPMD
Deflate
DH Key Exchange
DSA
SSH Key
SSH
SSH Tunnel
SFTP

Unreleased...
Bzip2
LZW
Bz2
Icon

 

Non-Chilkat Links
Text and String Handling

Open RAR Archive and List Contents

Demonstrates how to open a RAR archive and list the contents.

Note: The Chilkat RAR ActiveX objects are included in the "Chilkat Zip" ActiveX download. The RAR functionality contained within ChilkatZip2.dll is freeware, however, the Chilkat Zip, GZip, and .Z functionality is not freeware.

The Chilkat RAR for .NET and C++ are bundled in downloads that contain all Chilkat classes (both free and non-free). Make sure you select the download that matches your .NET Framework or VC++ version (6/7/8).

If running on x64, download the ActiveX, .NET, or C++ builds marked specifically for x64.

LOCAL loRar
LOCAL lnSuccess
LOCAL n
LOCAL i
LOCAL loEntry

loRar = CreateObject('Chilkat.Rar')

*  Note: The Chilkat RAR functionality only provides the ability
*  to open, list, and "unrar" (i.e. extract) RAR archives.  It does
*  not provide the ability to create RAR archives.

*  Also, the Chilkat RAR functionality is free.  It does not
*  require a license to use indefinitely.

lnSuccess = loRar.Open("abc123.rar")
IF (lnSuccess <> 1) THEN
    =MESSAGEBOX(loRar.LastErrorText)
    QUIT
ENDIF

n = loRar.NumEntries
FOR i = 0 TO n - 1

    loEntry = loRar.GetEntryByIndex(i)

    ? loEntry.Filename
    ? loEntry.UncompressedSize
    ? loEntry.CompressedSize

    IF (loEntry.IsDirectory = 1) THEN
        ? "(directory)"
    ENDIF

    IF (loEntry.IsReadOnly = 1) THEN
        ? "(read-only)"
    ENDIF

    ? "----"
    RELEASE loEntry
NEXT

Need a specific example? Send a request to support@chilkatsoft.com

© 2000-2007 Chilkat Software, Inc. All Rights Reserved.

Mail Component · .NET Email Component · ASP Mail Component · XML Parser