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
  • Special case
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
Linux

Special case

On some Linux distributions (Debian, Ubuntu, etc.), the user must be in the dialout group to be able to use serial ports.
If sListPort returns nothing when it should, make sure you have added the current user to this group with the following shell command :
sudo usermod -a -G dialout USER_NAME
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