柳
柳絮
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm8.BitBtn3Click(Sender: TObject);
begin //连接服务器
nmftp1.timeout:=strtoint64(edit5.text);
nmftp1.host:=edit1.text;
nmftp1.port:=strtoint(edit2.text);
nmftp1.userid:=edit3.text;
nmftp1.password:=edit4.Text;
try
groupbox1.cursor:=crhourglass;
bitbtn6.enabled:=true;
bitbtn3.enabled:=false;
nmftp1.connect;
except
bitbtn3.enabled:=true;
bitbtn6.enabled:=false;
groupbox1.cursor:=crhandpoint;
application.MessageBox('在与该站点连接时发生错误','错误提示',mb_ok);//实际上网调试 总是报这句错!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
end;
begin //连接服务器
nmftp1.timeout:=strtoint64(edit5.text);
nmftp1.host:=edit1.text;
nmftp1.port:=strtoint(edit2.text);
nmftp1.userid:=edit3.text;
nmftp1.password:=edit4.Text;
try
groupbox1.cursor:=crhourglass;
bitbtn6.enabled:=true;
bitbtn3.enabled:=false;
nmftp1.connect;
except
bitbtn3.enabled:=true;
bitbtn6.enabled:=false;
groupbox1.cursor:=crhandpoint;
application.MessageBox('在与该站点连接时发生错误','错误提示',mb_ok);//实际上网调试 总是报这句错!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
end;