Zip Component, Email Component, Encryption Component ActiveX Control for Zip Compression .NET Components for ASP.NET
ActiveX and .NET Components for Zip Compression, Encryption, Email, XML, S/MIME, HTML Email, Character Encoding, Digital Certificates, FTP, and more ASP Email ActiveX Component


Index of Chilkat Blog Posts

June 1, 2006

FTP ActiveX VB6 example with progress monitoring events.

This VB6 sample program demonstrates how to receive progress events for an FTP download.

<font face=\"courier\" size=2>
Private Sub ChilkatFTP21_GetProgress(ByVal pctDone As Long)
    ProgressBar1.Value = pctDone
End Sub
	
Private Sub Command1_Click()
    ChilkatFtp21.UnlockComponent "test"
    ChilkatFtp21.HostName = "www.***.com"
    ChilkatFtp21.Username = "***"
    ChilkatFtp21.Password = "***"
    ChilkatFtp21.KeepSessionLog = 1
    ChilkatFtp21.Passive = 0
    ChilkatFtp21.Connect
    ChilkatFtp21.GetFile "testfile.zip", "testfile.zip"
    MsgBox ChilkatFtp21.SessionLog
End Sub
</font>


Privacy Statement. Copyright 2000-2011 Chilkat Software, Inc. All rights reserved.
Send feedback to support@chilkatsoft.com

Components for Microsoft Windows XP, 2000, 2003 Server, Vista, Windows 7, and Windows 95/98/NT4.