Results 1 to 4 of 4

Thread: Solved: download complete

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Solved: download complete

    Is it possible to determine (via VBA) when a download is complete?

    I'm using the code below to download a file. Currently, I'm using a userform to select the downloaded file to accomplish a task and I would like to eliminate this step in my code to automatically run my code to open the file once the file is downloaded.

    Thanks

    Sub sDownloadHTTP(strURL As String)
        strURL = StrConv(strURL, vbUnicode)
        DoFileDownload (strURL)
    End Sub
    sDownloadHTTP "http://www.mysite.com/myfile.zip"
    Last edited by Aussiebear; 03-02-2025 at 05:31 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •