VB Code:
  1. Private Declare Function DoFileDownload Lib "shdocvw.dll" (ByVal lpszFile As String) As Long
  2.  
  3. Private Sub Form_Load()
  4.    DoFileDownload StrConv("http://www.server.com/download/file.zip", vbUnicode)
  5. End Sub