FTP Class Library

for Microsoft Access

The ACG Soft FTP class library allows developers to easily transfer files between a local machine and an FTP site or web server.  It also provides broad FTP capabilities to rename files, create and remove directories and enumerate files and directories on remote servers.
You can download and register for Access database applications below.   The download also contains a demonstration database that shows the library's capabilities.  The demo db is an open code source demo that allows you to look at how easy the library is to implement.

January 3, 2005


The Library is Easy to Use

FTP Icon The FTP Class can easily be used to do any of the following:

Download files from FTP or HTTP file servers, including password protected resources.  This can be used to manage and retrieve remote database information, XML data or any other file type.
Upload files to FTP Server (or web sites via FTP).
Remotely manage files and directories on an FTP Server.
Download and capture web page text

Code Example for a simple download:

Dim objFTP as New FTPClass
Dim dwReturn as Long
Const ERROR_NONE as Byte = 0

With objFTP
    dwReturn = .ServerConnect("ftp.MyFTPServer.com","MyUserName","MyPassword")
    If dwReturn = ERROR_NONE Then
       .SetNoticeDisplay = 1  '(provide user with a dialog)
       dwReturn=.GetFileFromServer("/FTPRootDirectory/MyTargetDirectory/MyFile.zip", _
           "c:\mydocuments\files\MyFile.zip")
       If dwReturn <> ERROR_NONE Then
           debug.print "Error: " & .TranslateErrorCode dwReturn
       End If
       .ServerDisconnect
    End If
End With
Set objFTP = Nothing  


Download and Ordering Information
Download a copy of the class library and demonstration database for Access 97

Download a copy of the class library and demonstration database for Access 2000

Download a copy of the class library and demonstration database for Access 2002 & 2003

FTP Library License Cost:

Single Workstation license -- $45.00 (US)
Corporate license; unlimited Users -- $180.00 (US)
Developer (open code) license -- $230.00 (US)

Register for FTP Library (be sure to pick the proper version when registering)
Back to the Developer Tools