N
netbug
Unregistered / Unconfirmed
GUEST, unregistred user!
我用的是Delphi3.0,我这里是LAN,我用FTP命令可以
以匿名登陆到192.1.1.5,
我现在想用Delphi程序以匿名登陆,
请看例子:
procedure TForm1.Button1Click(Sender: TObject);
begin
ftp1.UserId:='anonymous';
ftp1.Password:='aa@aa';
ftp1.Connect('192.1.1.5',21);
end;
当我按一下Button1按纽时,系统没有任何反应,好象处于等待状态,
当我再按一下时,系统弹出一个出错信息:
Project project1.exe raised exception class EOleException with message
'wrong protocol or connection state for the requested transction or
request'.process stopped.Use stop or Run to continue.
请问:这是为何?如何解决?
另:在Delphi3.0中,FTP如连接成功,它会激发什么事件?
(在Delphi3.0中,FTP控件的事件中没有OnConnected)
以匿名登陆到192.1.1.5,
我现在想用Delphi程序以匿名登陆,
请看例子:
procedure TForm1.Button1Click(Sender: TObject);
begin
ftp1.UserId:='anonymous';
ftp1.Password:='aa@aa';
ftp1.Connect('192.1.1.5',21);
end;
当我按一下Button1按纽时,系统没有任何反应,好象处于等待状态,
当我再按一下时,系统弹出一个出错信息:
Project project1.exe raised exception class EOleException with message
'wrong protocol or connection state for the requested transction or
request'.process stopped.Use stop or Run to continue.
请问:这是为何?如何解决?
另:在Delphi3.0中,FTP如连接成功,它会激发什么事件?
(在Delphi3.0中,FTP控件的事件中没有OnConnected)