how do i d/l a file from the web and save it in my computer?
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
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
but if internet explorer isn't installed? (i.e netscape)
Forum Rules