User Guide for Virtual Serial Port ActiveX Control
User Guide for Virtual Serial Port ActiveX Control
The Write method writes data to virtual serial port. LONG Write( BYTE* Buffer, // data buffer LONG Count // number of bytes to writ...
Wed, 8 Dec, 2021 at 6:21 PM
The WriteStr method writes a string into serial port. LONG WriteStr( BSTR Str, // data buffer ); Parameters: Str [in] : The strin...
Wed, 8 Dec, 2021 at 6:28 PM
The WriteArray method writes data to virtual serial port as a BYTE array of VARIANT type. LONG WriteArray( VARIANT Buffer, // data buffer ); ...
Wed, 8 Dec, 2021 at 6:30 PM
The OnBaudRate event occurs when other application changes the baud rate for virtual serial port. OnBaudRate( LONG BaudRate // baud rate ); ...
Wed, 8 Dec, 2021 at 8:25 PM
The OnDTR event occurs when other application changes the DTR (data-terminal-ready) signal state. OnDTR( BOOL On // DTR signal state ); ...
Wed, 8 Dec, 2021 at 6:22 PM
The OnHandFlow event occurs when other application changes flow control parameters for virtual serial port. OnHandFlow( LONG ControlHandShake, ...
Wed, 8 Dec, 2021 at 8:35 PM
The OnLineControl event occurs when other application changes line control parameters for virtual serial port. OnLineControl( BYTE StopBits, /...
Wed, 8 Dec, 2021 at 8:33 PM
The OnOpenClose event occurs when other application opens or closes virtual serial port. OnOpenClose( BOOL Opened // Port state ); Para...
Mon, 6 Dec, 2021 at 5:11 PM
The OnRTS event occurs when other application changes the RTS (ready-to-send) signal state. OnRTS( BOOL On // RTS signal state ); Param...
Wed, 8 Dec, 2021 at 8:29 PM
The OnRxChar event occurs when at least one character was received and placed in the input buffer of the virtual serial port. OnRxChar( LONG Count...
Mon, 6 Dec, 2021 at 6:11 PM