
ComPort


Delphi and C++Builder component for serial communication on Windows.
- Seamless communication with devices via serial ports
- Intuitive interface with advanced capabilities
- High-performance architecture using multithreading and overlapped I/O
- Compatible with Delphi/C++Builder versions 5 - 13, and Lazarus 4.2
- Registered version includes full source code
- Royalty-free distribution in your applications
ComPort is part of the Communication Protocol Suite
Order ComPort component $120 USD (license for one developer)
Order ComPort multi-license $360 USD (license for all developers in a company)
Order ComPort year upgrades $60 USD (for registered users only)
Order ComPort year upgrades multi-license $180 USD (for registered multi-license users only)
FAQ
How can I access COM ports numbered 10 and above?
Windows requires the use of a special prefix to access COM ports with numbers 10 or higher:// Delphi ComPort.DeviceName := '\\.\COM10'; // C++Builder ComPort->DeviceName = "\\\\.\\COM10";
How can I use a non-standard baud rate?
ComPort.BaudRate := brCustom; ComPort.CustomBaudRate := 460000;Make sure your hardware and drivers support the specified baud rate.