On 1 Aug 2000 10:09:25 -0500, "Christopher David Alm"
wrote:
> I need to send ctrl (lower case) e to a serial port. Please any help
>anyone can give.
Use of Text constant or Text control:
Right click on the constant/control and
select '\' Codes Display
or Hex Display
and input your data
In the codes display \05 will represent Ctrl+E
In the Hex display 05 will represent Ctrl+E
(Use uppercase letters when representing hex values.
If you input \0A in codes display it will change it to \n for newline)
Use of Byte array:
You could also create your string as an byte array and convert that to
string with the appropriate function.
--
Rolf