欢迎光临
我们一直在努力

PB使用WININET的FTP方式自动更新(二、判断是否可以连接)-数据库专栏,其他相关

建站超值云服务器,限时71元/月

global type f_connect_ftpserver from function_object
end type

forward prototypes
global function integer f_connect_ftpserver ()
end prototypes

global function integer f_connect_ftpserver ();
long ll_hret
long ll_hftp
integer li_ret = -1

do while yield()
loop

ll_hret = internetopena(gs_application_name,0,,,0)
if ll_hret = 0 or isnull(ll_hret) then
  //messagebox(错误!,缺少动态连接库wininet.dll!,stopsign!)
 return li_ret
end if
ll_hftp = internetconnecta(ll_hret,gs_ftpserver1,gl_ftploginport1,gs_ftploginuser1,gs_ftploginpass1,1,0,0)
if ll_hftp = 0 then
  ll_hftp = internetconnecta(ll_hret,gs_ftpserver2,gl_ftploginport2,gs_ftploginuser2,gs_ftploginpass2,1,0,0)
 if ll_hftp = 0 then
  ll_hftp = internetconnecta(ll_hret,gs_ftpserver3,gl_ftploginport3,gs_ftploginuser3,gs_ftploginpass3,1,0,0)
  if ll_hftp = 0 then
   internetclosehandle(ll_hret)
   return li_ret
  else
   li_ret = 3
  end if
 else
  li_ret = 2
 end if
else
 li_ret = 1
end if
internetclosehandle(ll_hret)
internetclosehandle(ll_hftp)
return li_ret

end function

 

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » PB使用WININET的FTP方式自动更新(二、判断是否可以连接)-数据库专栏,其他相关
分享到: 更多 (0)