C
Chris
As part of an application I feed text into a richtextbox in readonly mode.
If I feed in an empty string the application beeps e.g.:
String blah = "";
richTextBox1.SelectedText = blah;
result:
<beep>
Why is this?
Chris
If I feed in an empty string the application beeps e.g.:
String blah = "";
richTextBox1.SelectedText = blah;
result:
<beep>
Why is this?
Chris