|
InternetConnected (Function) In french: InternetConnecté
// Active Internet connection? ResConnection = InternetConnected() IF ResConnection = True THEN Info("An Internet connection is enabled") ELSE Info("No Internet connection is enabled") END
Syntax
Finding out whether an Internet connection is enabled Hide the details
<Result> = InternetConnected()
<Result>: Boolean - True if an Internet connection is enabled on the current computer,
- False otherwise.
Versions 19 and later New in version 19
This page is also available for…
|
|
|
| |
| | https://youtu.be/LVQMglOruG4
// VERIFICA INTERNET // CHECK INTERNET // VÉRIFIER INTERNET
https://windevdesenvolvimento.blogspot.com/2019/01/dicas-1981-windev-mobile-certificado-13.html
bRESULTADO_CONEXAO is boolean=InternetConnected() // VAMOS AGORA VERIFICAR O RESULTADO DA CONEXÃO // LET'S CHECK THE CONNECTION RESULT NOW // Vérifions le résultat de la connexion maintenant IF bRESULTADO_CONEXAO=True THEN Info("CONEXAO OK") ELSE Info("ERRO CONEXÃO") END
|
|
|
|
| |
| |
| |
|
| | Cuidado, ao utilizar essa função, não é confiável para testar Internet. Usavamos em nosso ERP, porém aconteceu de parar nossa emissão de NFe devido a função retornar equivocadamente que não tinha Conexão de Internet na máquina.
Para testar Conexão de Internet recomendo utilizar, o Post do Adriano Boller: http://forum.pcsoft.fr/fr-FR/pcsoft.us.windevmobile/605-conexao-internet/read.awp |
|
|
|
| |
| |
| |
| |
| |
| |
| | |
| |