Pete, you can also achieve this downloading function with the help of URLDownloadToFile function.
This function is very easy and you don't even need an Inet control if you use this function.
___
[tt]
Private Declare Function URLDownloadToFile Lib "urlmon" Alias "URLDownloadToFileA" (pCaller As Any, ByVal szURL As String, ByVal szFileName As String, ByVal dwReserved As Long, ByVal lpfnCB As Long) As Long
Function Download(Url As String, FileName As String) As Boolean
'returns true if successful
Download = URLDownloadToFile(ByVal 0&, Url, FileName, 0, 0) = 0
End Function
Private Sub Form_Load()
[ignore]Download "
"C:\tek-tips.htm"[/ignore]
End Sub[/tt]