Installation manual
MAIN CONTROL OBJECT
19
3
POSSIBLE VALUES
The control accepts only these values:
0 for text mode,
1 for binary mode,
2 for text mode with OEM-ANSI character conversion for data to and from device,
3 for text mode with OEM-ANSI character conversion for data from device to
application only,
4 for text mode with OEM-ANSI character conversion for data to device only.
The default value is 0
EXAMPLE
...
Public Const MODE_TEXT = 0
Public Const MODE_BINARY = 1
Dim mode As Integer
...
RFNCCTL.Mode = MODE_BINARY
...
mode = RFNCCTL.Mode
...