Settings
Sets or Retrieves the BaudRate, Parity, Databits and StopBits as a String
MSComm32 and SComm32 have the same syntax and functionality
|
|
SComm1.Settings = value
value = SComm1.Settings
|
value:- |
A String Expression containing the parameters Baud, Parity, Databits, StopBits.
|
Example:-
SComm1.Settings = "9600,n,8,1"
'// BaudRate 9600, Parity=None, Databits=8, StopBits=1
|
|
|