Results 1 to 3 of 3

Thread: Help - If You Could

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Jan 2000
    Location
    Brooklyn NY USA
    Posts
    1,258

    Wink 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.

  2. #2
    jim mcnamara
    Guest
    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.

  3. #3

    Thread Starter
    Frenzied Member
    Join Date
    Jan 2000
    Location
    Brooklyn NY USA
    Posts
    1,258
    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
  •  



Click Here to Expand Forum to Full Width