|
-
May 30th, 2001, 02:09 AM
#1
Thread Starter
Frenzied Member
Help - If You Could
I am using the FTPGETFILE API and would like to know how i could add a progress bar or show how much was already downloaded.
please help.
-
May 30th, 2001, 05:51 AM
#2
Lose the FTPGETFILE api. One line does all of it.
[CODE]
Private Declare Function DoFileDownload Lib "shdocvw.dll" (ByVal lpszFile As String) As Long
Sub DownLoadwithDialog(strFile)
'strFile is an URL like http://www.vb-world.net/somewhere/bigdir/junk.zip
Call DoFileDownload(strFile)
End Sub
Try it - it brings up a dialog box just like you want.
-
May 30th, 2001, 07:31 AM
#3
Thread Starter
Frenzied Member
I cant use it because my program needs to wait until finished downloading.
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
|