public void ByteData_TextChanged(object sender, EventArgs e)
{
DataString.Append(ByteData.Text);
//here I do some logic on the character just received
}
I am using a single textbox (ByteData) to input some ASCII characters.
The character strings vary from one character to about five.
I would like to terminate the data entry with a carriage
return (Enter) key and go to another part of the program.
My problem is that the Enter key is not seem to be recognized
and all get is the "beep" tone. How does this snippet recognize
the Enter key so that I can transfer control somewhere else?
Alan