Imports System.Runtime.InteropServices
publicclass DownloadAFile
Private Declare Function DoFileDownload Lib "shdocvw.dll" (ByVal lpszFile As String) As Integer
Public Shared Sub Main
Try
DoFileDownload("www.java2s.com")
Catch ex As Exception
Console.WriteLine(ex.StackTrace.ToString())
End Try
End Sub
End Class