Definitely this is not what I'm looking for, I do not need to identify the type of network, I need to see if the mobile network is available or not, if there is a signal or not.
What I'm looking for is sending a text message as long as there's a mobile network.
If you need to transfer a large file to own website, it's important to understand effective speed. To do this it's possible to place upload script on website and to try to upload test files (beginning from small). If there is no internet connection at all, httpjob will return error code.
If you need to transfer a large file to own website, it's important to understand effective speed. To do this it's possible to place upload script on website and to try to upload test files (beginning from small). If there is no internet connection at all, httpjob will return error code.
What I need to do does not depend on the internet, it depends on the GSM network, I need to send an SMS as long as I have GSM coverage. Without Internet.
Dim RedDisponible As Phone
Log("GetNetworkOperatorName: "&RedDisponible.GetNetworkOperatorName)
Log("GetNetworkType: "&RedDisponible.GetNetworkType)
Log("GetPhoneType: "&RedDisponible.GetPhoneType)
If RedDisponible.GetNetworkOperatorName <> "" And RedDisponible.GetNetworkType <> "UNKNOWN" Then
Log("Red Disponible")
Else
Log("Red no disponible")
End If