Visual Basic Examples

ChilkatHOMEASPVisual BasicVB.NETC#Visual C++CMFCDelphiFoxProJavaPerlPHPPythonRubySQL ServerVBScript

VB Examples

Bounced Mail
Bz2
Character Encoding
CSV
Digital Certificates
Digital Signatures
Email
FTP
HTML-to-XML
HTTP
IMAP
Encryption
MHT / HTML Email
POP3
RSA
S/MIME
SFTP
SMTP
Socket
Spider
SSH
SSH Key
SSH Tunnel
String
Tar
Unicode
Upload
XML
XMP
Zip Compression

More Examples...
Email Object
DKIM / DomainKey
NTLM
DH Key Exchange
DSA
FileAccess
RSS
Atom
Self-Extractor
Service
Bzip2
PPMD
Deflate
LZW


VB Strings
VB Byte Array

 

 

 

 

 

 

 

Open Zip File at a URL

Download Chilkat Zip ActiveX (includes objects for .zip, .gz, .bz2, and .Z)

Opens a Zip file on the Web, such as http://www.chilkatsoft.com/Test2.zip

Private Sub Command1_Click()
    
    Dim zip As New ChilkatZip2
    
    ' Anything works to begin the 30-day trial.
    zip.UnlockComponent "30-day trial"
    
    ' We've placed a Zip here for you to test...
    success = zip.OpenFromWeb("http://www.chilkatsoft.com/Test2.zip")
    If (success = 1) Then
    
        ' List the files in the Zip
        Dim entry As ChilkatZipEntry2
        Set entry = zip.FirstEntry()
        While (Not (entry Is Nothing))
            List1.AddItem entry.FileName
            Set entry = entry.NextEntry()
        Wend
        
    Else
    
        MsgBox zip.LastErrorText
        
    End If
    
End Sub

 

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

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