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.
DECLARE INTEGER GetRTTAndHopCount IN Iphlpapi;
INTEGER DestIpAddress, LONG @HopCount,;
INTEGER MaxHops, LONG @RTT
DECLARE INTEGER inet_addr IN ws2_32 STRING cp
LOCAL lnDst, lnHop, lnRTT
lnDst = inet_addr("216.109.117.108") && Yahoo IP, replace with your own IP address if you don't want reliance on yahoo
STORE 0 TO lnHop, lnRTT
IF GetRTTAndHopCount(lnDst, @lnHop, 50, @lnRTT) = 0
MESSAGEBOX("You are not currently connected to the internet.")
ELSE
MESSAGEBOX("You are connected to the internet.")
ENDIF
CLEAR DLLS GetRTTAndHopCount, inet_addr