In This Topic
            
            This example demonstrates the 7 following steps for receiving files:
- 
Specify the FTP server's address  
- 
Specify the username to login  
- 
Specify the password for the username  
- 
Connect to the FTP server  
- 
Send files  
- 
Disconnect from the FTP server  
- 
Perform error handling  
The following code assumes you have placed an XceedFtp control on a form and have called it 'XceedFtp1' (the default name)
| Visual Basic |  Copy Code | 
| Call XceedFtp1.License( "your license key" )
 
 XceedFtp1.ServerAddress = "my.server.com" ' step (1)
 XceedFtp1.UserName = "jacob" ' step (2)
 XceedFtp1.Password = "ladder" ' step (3)
 
 On Error Resume Next ' step (7)
 
 Call XceedFtp1.Connect ' step (4)
 
 If Err.Number = 0 Then ' step (7)
 MsgBox "Successfully connected to server. Starting upload."
 
 Call XceedFtp1.SendFile("c:\to upload\file.dat", 0, "incoming\file.dat", False) ' step (5)
 
 ' Use the SendMultipleFiles method if you want to use wildcards to send more than one file at a time.
 
 If Err.Number = 0 Then ' step (7)
 MsgBox "Successfully uploaded the file."
 Else
 MsgBox "Upload error. Description: '" & Err.Description & "'. Error#" & Err.Number
 End If
 
 Call XceedFtp1.Disconnect ' step (6)
 Else
 MsgBox "Connect error. Description: '" & Err.Description & "'. Error#" & Err.Number
 End If
 
 |