Hi Michelis,
I found this by accident and if you have File Explorer than it will work for you
fe_OnlineStatus
fe_OnlineStatus ( byte pOption=0 ) ,byte
Description
This function's purpose is to establish whether you are currently connected to the internet. The behaviour / result of the function is determined by the parameter pOption.
If pOption is omitted (or passed as zero), this function will simply return true (1) or false (0), indicating whether you are connected or not.
if fe_OnlineStatus() = 1
message ('I am connected!')
end
If pOption is passed as 1, 2, 3 or 4, this function returns the following:
pOption=1; returns true / false indicating whether the local system is in offline mode
pOption=2; returns true / false indicating whether the local system uses a modem to connect to the internet
pOption=3; returns true / false indicating whether the local system uses a local network area to connect to the internet
pOption=4; returns true / false indicating whether the local system uses a proxy server to connect to the internet
if fe_OnlineStatus(4) = true
message('You are connected through a Proxy Server')
end
If the function returns a negative number it indicates that an error occurred.
Best regards,
Djordje Radovanovic