Returns the list of Wi-Fi network cards currently available on the current computer.
sMyList is string
nID is int
sDescription is string
sMyList = WiFiListNetworkCard()
FOR EACH STRING WifiNetwork OF sMyList SEPARATED BY CR
nID = Val(ExtractString(WifiNetwork, 1 , TAB))
sDescription = ExtractString(WifiNetwork, 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:
<Identifier> + TAB + <Description>
where: - <Identifier>: Identifier of the Wi-Fi network card.
- <Description>: Name (in clear) of the Wi-Fi network card.