|
|
|
|
|
WiFiListNetworkCard (Function) In french: WiFiListeCarteRéseau Returns the list of Wi-Fi network cards currently available on the current computer. sMaListe is string
nId is int
sDescription is string
sMaListe = WiFiListNetworkCard()
FOR EACH STRING networkWifi OF sMaListe SEPARATED BY CR
nId = Val(ExtractString(networkWifi, 1 , TAB))
sDescription = ExtractString(networkWifi, 2, TAB)
END
Syntax
<Result> = WiFiListNetworkCard()
<Result>: Variable List of Wi-Fi network cards separated by CR characters (Carriage Return). For each network card, a set of information is returned in the following format:
<Identifiant> + TAB + <Description> where: - <Identifiant> Wi-Fi network card identifier.
- <Description> Wi-Fi network card name in plain text.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|