Di bawah ini merupakan fungsi VB6 untuk mendownload sebuah URL. Adapun kode VB6 untuk mendownload sebuah URL adalah sebagai berikut:
READ MORE - VB6 Code - Mendownload Sebuah URL
Option ExplicitContoh penggunaan fungsi di atas:
Private Function DownloadFile(ByVal sFileSource As String, ByVal sDestFile As String) As Boolean
Dim bytes() As Byte
Dim fnum As Integer
bytes() = Inet1.OpenUrl(sFileSource, icByteArray)
fnum = FreeFile
Open sDestFile For Binary Access Write As #fnum
Put #fnum, , bytes()
Close #fnum
DownloadFile = True
End Function
Private Sub Command1_Click()Demikian kode VB6 untuk mendownload sebuah URL. Semoga bermanfaat.
Call DownloadFile("http://4basic-vb.blogspot.com", "C:\download.html")
End Sub