Author: Abstractvb This shows how to download a file from the internet though VB code without getting an intrusive download dialog box appearing. 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 Dim llRetVal As Long llRetVal = URLDownloadToFile(0, "http://abstractvb.com/default.asp", _ "c:\default.asp", 0, 0)