Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim bytData() As Byte
Dim rPath as string, lPath as string, sFile as string
Dim iFile as Integer
rPath = "[URL unfurl="true"]http://www.com/"[/URL]
lPath = "c:\temp\"
sFile = "myfile.rar"
bytData() = Inet1.OpenURL(rPath & sFile, icByteArray)
iFile = FreeFile
Open lPath & sFile For Binary Access Write As #iFile
Put #iFile, bytData()
Close #iFile