Ver Mensaje Individual
  #4  
Antiguo 04-09-2008
Avatar de TOPX
TOPX TOPX is offline
Miembro
 
Registrado: may 2008
Ubicación: Bogotá
Posts: 527
Reputación: 17
TOPX Va camino a la fama
Lo único malo que ví en su código fue que sobraría el end;, pero igual, podría ser:

Código Delphi [-]
  with TIdFTP.Create(nil) do
  begin
    try
      Username := 'nombre_de_usuario';
      Password := 'contraseña';
      Host := 'ftp.servidor.com';
      Connect; 
      if Connected then
      begin
        ShowMessage('Conexión exitosa.');
        Disconnect;
      end
      else
      begin
        ShowMessage('Conexión fallida.');
      end;
    finally
     Free;
    end;
  end;
__________________
"constructive mind, destructive thoughts"
Responder Con Cita