Private Declare PtrSafe 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
Function DownloadFromWeb(strURL As String, strDestination As String) As Long
DownloadFromWeb = URLDownloadToFile(0, strURL, strDestination, 0, 0)
End Function