VB6 – Downloading a file
To download a file through your application and save it is simple. This can be used to check for updates and download them with ease!
The code is simple, this code would download the “Gravity Example” from this post.
Dim bytes() As Byte
bytes() = Inet1.OpenURL("http://bncapps.com/wp-content/uploads/GravityTests-Bin+Scr.rar", icByteArray)
ff = FreeFile
Open App.Path [...]



