• Loading...
Atp UltimateFtp
Creating a WinForms application
Send comments on this topic to ATP, Inc.
Getting Started > Creating a WinForms application

Glossary Item Box

This tutorial will walk you through creating a WinForms application and add Ftp control to it. It also shows how to:

  • Drag and Drop Ftp control from the Toolbox to your form.
  • Set Ftp properties.

Creating a new project and adding FTP control to it

  1. Start the Visual Studio .NET.
  2. From File menu, choose New, then choose Project.
  3. From the Project Creation dialog box, choose either Visual C# Projects or Visual Basic Projects then choose Windows Application. Specify a name and a location for the project, then click OK.
  4. Drag and drop the Ftp control from the Toolbox to the form.
    Win
    Another way is to add references to Atp.Ftp.dll, Atp.Common.dll, Atp.FileSystem.dll, Atp.NetworkSecure and Atp.Network.dll assemblies. Please see Installation instruction for C# and Installation instruction for VB.NET for more details.
  5. Now right click on the FTP component icon (bound with red rectangle in the picture above) to show the context menu, click on the Properties... menu.
    Win Win
  6. Now make a quick application to test. Drag a Button onto the form.
  7. Add the following code to the button "OnClick" event handler. This code is for uploading a local file to an FTP server.
    C# Copy Code
    // Create a new instance.
    Ftp client = new Ftp();
    // Connect to the FTP server.
    client.Connect("localhost");
    // Authenticate.
    client.Authenticate("test", "test");
    // Upload local file 'c:\test.dat' to the default remote directory.
    client.UploadFile("c:\\test.dat", "test.dat");
    string defaultDir = client.GetCurrentDirectory();
    MessageBox.Show(
    string.Format("File has been successfully uploaded to '{0}'.", defaultDir));
    // Disconnect.
    client.Disconnect();
    VB.NET Copy Code
    ' Create a new instance.
    Dim client As New Ftp()
    ' Connect to the FTP server.
    client.Connect("localhost")
    ' Authenticate.
    client.Authenticate("test", "test")
    ' Upload local file 'c:\test.dat' to the default remote directory.
    client.UploadFile("c:\test.dat", "test.dat")
    Dim defaultDir As String = client.GetCurrentDirectory()
    MessageBox.Show(String.Format("File has been successfully uploaded to '{0}'.", defaultDir))
    ' Disconnect.
    client.Disconnect()
  8. Compile and execute the application by navigating to the Debug menu and choose Start. Click the button and you should see a message indicating that the file has been successfully uploaded to your FTP server's default working directory in the MessageBox.
Atp is a Microsoft Partner. Our components are compatible with Windows 7 and optimized for Visual Studio