Results 1 to 3 of 3

Thread: Web Download

  1. #1

    Thread Starter
    Member
    Join Date
    Jun 2000
    Posts
    55
    how do i d/l a file from the web and save it in my computer?

  2. #2
    Guest
    Code:
    Private Declare Function DoFileDownload Lib "shdocvw.dll" (ByVal lpszFile As
    String) As Long
    
    
    Private Sub Command1_Click()
    
       Dim sDownload As String
    
       sDownload = StrConv("http://....file.zip", vbUnicode)
       Call DoFileDownload(sDownload)
    
    End Sub

  3. #3

    Thread Starter
    Member
    Join Date
    Jun 2000
    Posts
    55
    but if internet explorer isn't installed? (i.e netscape)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width