On Error GoTo errHere
Dim strQRY As String
Dim strHTTP As String
Dim strFileToSave As String
strHTTP = "https://asfr.hhh.net/OF/OFSPO/hhsfmg/mwwg/Data%20Call%20%20DDA/2016%20September%20DDA%20Data%20Call.xlsx"
strFileToSave = "C:\Users\shieldsco\Documents\Vince.xlsx"
If fnDownloadHTTP(strHTTP, strFileToSave) = False Then ' -- downlaod the file
MsgBox "File DL failed. Make sure folder exist"
GoTo ExitHere
End If
MsgBox "All files downloaded"
ExitHere:
Exit Sub
errHere:
MsgBox "Error"
Resume ExitHere