R
_RIP_DREAMS
Guest
how do i download a file...? it's a image...
Dim bImage() As Byte
' get the binary data
bImage = Inet1.OpenURL("URL")
' save it to file
Open "c:\windows\desktop\temp_image.dat" For Binary As #1
Put #1, , bImage
Close #1