VB.Net Tutorial/GUI Applications/File Download — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (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