I am trying to make a simple program which has:
2 TextBoxes (inputs to program)
1 RichTextBox (output of program)
The user enters data into the 2 textboxes, the program then processes it and displays it in the RichTextBox (as text)....
Since the RichTextBox is only used to display text I have set it to ReadOnly - but would also like to disable the text cursor that appears in it when you click on it (?same as disabling its focus?)
How would I do this?