VB.Net Tutorial/GUI Applications/File Download — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 12:56, 26 мая 2010
Download a file
Imports System.Runtime.InteropServices
public class DownloadAFile
Private Declare Function DoFileDownload Lib "shdocvw.dll" (ByVal lpszFile As String) As Integer
Public Shared Sub Main
Try
DoFileDownload("www.vbex.ru")
Catch ex As Exception
Console.WriteLine(ex.StackTrace.ToString())
End Try
End Sub
End Class