i'm using URLDownloadToFile

[code]
'In module
Private 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

'on form1
x = URLDownloadToFile 0, URL, LocalFilename, 0, 0
[\code]



could someone explain how i can use pCaller
or lpfnCB or whatever to get the progress of the download.


thanks!