I've got a program that has to capture certain keys. For example, I use Chr(13) for 'Enter', Chr(9) for a 'Tab', which I embed in a string with other characters. Since there is no way to use the keyboard or mouse for input, everything has to be done programatically, including the key strokes.
Ex:
In this one instance I need to embed a 'down arrow' character since when there is a list of radio buttons I have to send a 'down arrow' key to select the second one in the group. How do I embed the down arrow into my string?
Ex:
Code:
str = "Value1" & Chr(9) & "ValueOfNextTextBox" & Chr(9) & "ValueOfNextTextBox" & Chr(13)
WriteToPort(str)