ftp/Unit1.pas

{ Technical support: support@smartftp.com }

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ComObj,
  StdCtrls;
type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private-Deklarationen }
  public
    { Public-Deklarationen }
  end;

var
  Form1: TForm1;
  connection: variant;

implementation

{$R *.DFM}

procedure TForm1.Button1Click(Sender: TObject);
var
   ret: Integer;
   fileLogger: variant;
begin
     connection := CreateOleObject('sfFTPLib.FTPConnectionMTA');
     connection.Host := 'ftp.smartftp.com';
     connection.Username := 'anonymous';
     connection.Password := 'test@test.com';
     
     //fileLogger := CreateOleObject('sfFTPLib.FileLogger');
     //fileLogger.File := 'FTPLib.log';
     //connection.Logger := fileLogger;

     connection.Connect();
     ShowMessage('Connected');
end;

end.