|
-
Nov 22nd, 1999, 08:01 PM
#1
Thread Starter
PowerPoster
Hi,
Like I said the last time, this should go in the Internet Dev Forum, but that is dead, many more people go here and so I'm more likely to find someone who knows the answer. Ok, I'm using this to download a file from the internet...
Dim strCommand As String
Dim strWebPage As String
strWebPage = "http://www.desktopdriving.co.uk/driving/version.txt"
strCommand = "GET " + strWebPage + " HTTP/1.0" + vbCrLf
strCommand = strCommand + "Accept: */*" + vbCrLf
strCommand = strCommand + "Accept: text/html" + vbCrLf
strCommand = strCommand + vbCrLf
Winsock1.SendData strCommand
It works fine, but now I'd like to get the size of the file before it starts downloading so I can make a progress bar.
Any help much appreciated..
Regards,
------------------
- Chris
[email protected]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|