急求
vb 怎麼用winsock控件 ftp上傳下載文件,還有沒有其他的做法,簡單就好
inet 比較簡單,winsock有固定API調用,網上很多
InetFTP.UserName = txtusername.Text
InetFTP.Password = txtpassword.Text
InetFTP.Execute host_name, "Get log\xxxx"
Do While InetFTP.Stillexecuting
DoEvents
Loop
InetFTP.Execute , "CLOSE"
InetFTP.Execute , "QUIT"