PDA

Click to See Complete Forum and Search --> : Download File from Internet


venkatraman_r
Nov 28th, 1999, 11:23 AM
Hi,

I need to down image and data files from internet. How do i program it in vb??

Please suggest me with some sample codes with detailed explanations.

Thanx.

Venkat.

dj4
Nov 28th, 1999, 01:41 PM
Look at Internet Transfer Control in VB helps

- Dj4

venkatraman_r
Nov 28th, 1999, 05:49 PM
hI,

Can you just gimme some sample codes??

Serge
Nov 28th, 1999, 08:30 PM
Sure!


Dim strURL As String

strURL = "www.MySite.com"
Inet1.Execute strURL, "GET MyFile.txt C:\MyFile.txt"



------------------

Serge

Software Developer
Serge_Dymkov@vertexinc.com
Access8484@aol.com
ICQ#: 51055819 (http://www.icq.com/51055819)

venkatraman_r
Nov 29th, 1999, 10:28 AM
Hi Serge,

Thanx for you code. But i am not able to understand exactly what it does Serge. Can you please explain it.

I donno why i am unable to catch you in icq?

Thanx anyway.

Regards,

Venkat.

Serge
Nov 29th, 1999, 05:57 PM
Ok, here's an explanation. When you use Execute method of Inet control first you would pass the address (e.g. www.yoursite.com (http://www.yoursite.com) or any other web site that you want to get the file from). Then you use GET command (it tells the Inet that the action will be GET something in this case MyFile.txt wich assuming that this file in the root directory of the web site) Next, you specify where to copy the downloaded file.
That's it.

About ICQ, lately, I can't use it here at work, so the only time I'm on it is afternoon at home (after 4PM eastern time)

------------------

Serge

Software Developer
Serge_Dymkov@vertexinc.com
Access8484@aol.com
ICQ#: 51055819 (http://www.icq.com/51055819)

vbsquare
Nov 30th, 1999, 01:51 AM
Check out this cool series on the Internet Transfer control at:
http://www.vbsquare.com/internet/

------------------
"To the glory of God!"

venkatraman_r
Nov 30th, 1999, 10:33 AM
Hi Serge and others,

Thanx for your help and Serge, your explanations are really good and fruitful.

Regards,

Venkat :)