ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Windows functions / Serial/Parallel Ports 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
Returns the list of serial and parallel ports on the computer.
Example
// Load the names of the serial ports on the computer in a Combo Box control.
SerialPortNames is array of strings = sListPort(1)
 
FOR EACH sPort IN SerialPortNames
ListAdd(COMBO_SerialPorts, sPort)
END
Syntax
<Result> = sListPort([<Type>])
<Result>: Array of strings
Array of strings that contains the names of the sought ports.
<Type>: Optional integer
Type of port to be listed:
  • 0 (default value) : Lists serial and parallel ports.
  • 1 : Lists serial ports.
  • 2: Lists parallel ports.
Remarks
Business / UI classification: Business Logic
Component: wd290com.dll
Minimum version required
  • Version 26
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/22/2022

Send a report | Local help