I’ve found numerous examples for doing this in several languages, but none that are VBA specific. This question, How to download multiple files in VB6 with progress bar?, addresses three different approaches to do this in VB6.
- Use the ASyncRead property of the VB6 UserControl/UserDocument objects
- Use type library olelib.tlb and the IBindStatusCallback interface
- Use wininet.dll to write your own download to file function
None of these approaches work for me because:
- The UserControl/UserDocument objects are not available from VBA
- I’d rather not have to maintain and distribute a large external dependency
- I did not see an obvious way to get the current file download progress
Number 2 above seemed the most promising. I’m wondering if I can create an IBindStatusCallback interface using a class module from within my VBA project?
Or maybe there are properties/methods available using Number 3 above that would provide the current progress. Any help is much appreciated.
I have done this using the wininet.dll functions. Unfortunately I cannot paste my code as it is owned by my employer.
Use InternetOpen and InternetOpenUrl to start the download, HttpQueryInfoLong to get the content length and then repeatedly call InternetReadFile to read data into a buffer (I use a 128k buffer), writing the data to a file and updating the progress bar as you go.
Declarations to get you started:
If you need any clarification, post a comment.