ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

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

Last update: 05/15/2025

Send a report | Local help