Outils pour utilisateurs

Outils du site


informatique:excel:excel_test_de_connexion_internet

Voici un code simple pour vérifier l'état de la connexion à internet.

Private Declare Function IsNetworkAlive Lib "SENSAPI.DLL" _
    (ByRef lpdwFlags As Long) As Long
 
Sub verificationConnection()
    Select Case IsNetworkAlive(0)
        Case 0: MsgBox "not connected"
        Case 1: MsgBox "connected to LAN"
        Case 2: MsgBox "connected to WAN"
        Case Else: MsgBox "connected to other network"
    End Select
    ThisWorkbook.FollowHyperlink "http://www.wanao.com", , True
End Sub

<note>Source</note>

informatique/excel/excel_test_de_connexion_internet.txt · Dernière modification : 2022/04/10 17:26 de 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki