|
||||
DoFileDownloadCategory: InternetHits: 5076 Rating: (2.78) votes 970
Rate: 1-star 2-stars 3-stars 4-stars 5-stars
API Explanation
The DoFileDownload function opens a download dialog. Parameter Information Declare Function DoFileDownload Lib "shdocvw.dll" (ByVal lpszFile As String) As Long
Code
Private Declare Function DoFileDownload Lib "shdocvw.dll" (ByVal lpszFile As String) As Long
Private Sub Form_Load() DoFileDownload StrConv("http://www.allapi.net/", vbUnicode) End Sub |