Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Open Zip File at a URLOpens 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-2008 Chilkat Software, Inc. All Rights Reserved.