-------------

解决方案 »

  1.   

    用MS Internet Transfer control
    例子msdn有
      

  2.   

    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 LongPublic Function DownloadFile(Url As String, LocalFilename As String) As Boolean
    Dim lngRetVal As Long
    lngRetVal = URLDownloadToFile(0, Url, LocalFilename, 0, 0)
    If lngRetVal = 0 Then DownloadFile = True
    End Function任何格式