Kirjautuminen

Haku

Tehtävät

Keskustelu: Ohjelmointikysymykset: VB6: FTP

Sharph [16.11.2003 18:31:50]

#

Miten vb4:sella voi lähettää ja vastaanottaa tiedostoja netistä?

The Ohjelmoija [16.11.2003 20:38:36]

#

Tässä olisi jotain:

Create a form called Form1 and add the Microsoft Internet Transfer Control. Use the default name of Inet1.
You'll need two command buttons: Command1 and Command2 and that's it!

Private Sub Form_Load()
Inet1.AccessType = icUseDefault
Inet1.Protocol = icFTP
Inet1.RemoteHost = "ftp.host.com"
Inet1.RemotePort = "21"
Inet1.Password = "password"
Inet1.UserName = "username"
Inet1.RequestTimeout = "60"
End Sub

Private Sub Command1_Click()

'use to download files to ftp server

strRemote = "index.htm"
strLocal = "index.htm"
Form1.Inet1.Execute , "GET """ & strRemote & """ " & strLocal
End Sub

Private Sub Command2_Click()

'use to upload files to ftp server

strRemote = "index.htm"
strLocal = "index.htm"
Form1.Inet1.Execute , "PUT """ & strLocal & """ " & strRemote
End Sub

Sharph [16.11.2003 21:01:34]

#

Mistä ton Microsoft Internet Transfer Controllin saa? (huom:mulla on vb4)

Blaze [16.11.2003 23:34:05]

#

lainaus:

Mistä ton Microsoft Internet Transfer Controllin saa? (huom:mulla on vb4)

Tullee Windowsin mukana. Kutosessa lista lisättävistä komponenteista löytyy Project > Components, nelosessa tuskin on kauhean paljon erilainen.

Edit: Eikös nelosesta ollu sekä 16-, että 32 bittinen versio? Onhan sulle se 32-bittinen?

Sharph [17.11.2003 20:30:20]

#

joo mutta sitä ei löydy

Vastaus

Aihe on jo aika vanha, joten et voi enää vastata siihen.

Tietoa sivustosta