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 Events for Upload

This VB6 example program demostrates using events to monitor FTP upload progress.

<font face=\"courier\" size=2>
Private Sub ChilkatFtp21_PutProgress(ByVal pctDone As Long)
    ProgressBar1.Value = pctDone
End Sub
	
Private Sub Command2_Click()
    ChilkatFtp21.UnlockComponent "test"
    ChilkatFtp21.HostName = "www.***.com"
    ChilkatFtp21.Username = "***"
    ChilkatFtp21.Password = "***"
    ChilkatFtp21.KeepSessionLog = 1
    ChilkatFtp21.Passive = 0
    ChilkatFtp21.Connect
    ChilkatFtp21.PutFile "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.