Est ce quelqu'un sait comment lister le nom des conenxion internet et du réseau...

Code : Tout sélectionner
If OpenWindow(0, 0, 0, 300, 200, #PB_Window_SystemMenu | #PB_Window_ScreenCentered, "Internet")
If OpenLibrary(0, "wininet.dll")
hFunc.l = IsFunction(0, "InternetDial")
If hFunc
dwResult.l = CallFunctionFast(hFunc,WindowID(),"", 1, @dwConnexion,0)
Debug dwResult
Debug dwConnexion
EndIf
Repeat
Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf
EndIf
Code : Tout sélectionner
If OpenLibrary(0,"mpr.dll")
a = IsFunction(0, "WNetConnectionDialog")
CallFunctionFast(a,0,1)
EndIf