N
NevilleT
Just about created an automatic upgrade function to check if a new version of
the program is available, download and install it. I am downloading a file
from the Internet using:
Public Declare Function URLDownloadToFile Lib "urlmon" Alias
"URLDownloadToFileA" ( _
ByVal pCaller As Long, _
ByVal szURL As String, _
ByVal szFileName As String, _
ByVal dwReserved As Long, _
ByVal lpfnCB As Long _
) As Long
lngRetVal = URLDownloadToFile(0, strURL, strNewFileNameIncPath, 0, 0) '
Download the new file
All works fine however the download takes a few minutes. What I would like
to do is to display a progress bar. Has anyone seen this done in Access?
the program is available, download and install it. I am downloading a file
from the Internet using:
Public Declare Function URLDownloadToFile Lib "urlmon" Alias
"URLDownloadToFileA" ( _
ByVal pCaller As Long, _
ByVal szURL As String, _
ByVal szFileName As String, _
ByVal dwReserved As Long, _
ByVal lpfnCB As Long _
) As Long
lngRetVal = URLDownloadToFile(0, strURL, strNewFileNameIncPath, 0, 0) '
Download the new file
All works fine however the download takes a few minutes. What I would like
to do is to display a progress bar. Has anyone seen this done in Access?