ErosOlmi
16-10-2006, 10:45
This thinBasic script will download default thinBasic web site page locally.
The same can be used for whatever file from internet. Just change the url.
uses "INet"
dim ret as number
ret = INET_URLDownLoad("http://www.thinbasic.com", APP_SOURCEPATH + "Home.html")
IF ret <> %TRUE THEN
msgbox(0, "Error: " + ret)
END IF
The same can be used for whatever file from internet. Just change the url.
uses "INet"
dim ret as number
ret = INET_URLDownLoad("http://www.thinbasic.com", APP_SOURCEPATH + "Home.html")
IF ret <> %TRUE THEN
msgbox(0, "Error: " + ret)
END IF