LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

delete in a string

I need to send the following string to my serial port:   AT+BT!<del>!   where <del> is the backspace key
 
How would I send the 'backspace' as described ?
 
Thanks,
Morné
0 Kudos
Message 1 of 3
(2,830 Views)
Concatenate a string constant to the string.  Set the representation of the constant to Hex display.  Put the value 08 into the string constant.

Message Edited by Ravens Fan on 07-31-2007 10:47 AM

Message 2 of 3
(2,827 Views)
Hi Morne & Raven,

you can also use a string constant set first to normal display, input AT+BT!!, then switch to hex display and insert 08 at the right position - no need for string concat Smiley Wink
AT+BT!<del>! = "4154 2B42 5421 0821"
Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
Message 3 of 3
(2,807 Views)