ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / WiFi functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
WiFiListNetworkCard (Function)
In french: WiFiListeCarteRéseau
Returns the list of Wi-Fi network cards currently available on the current computer.
Example
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.
Component: wd290com.dll
Minimum version required
  • Version 18
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help