I have a text box that I want to mostly disable. I would like the user to be able to copy the text, but that's all.
Here's the code for the keyDown event:
Code:
e.Handled = True
If e.KeyCode = Keys.ControlKey + Keys.C Then
  System.Windows.Forms.Clipboard.SetText(rtbErrorList.Text)
End If
I'm never getting into the If when I press ^C. Any suggestions?