A bug in RichTextBox control?

  • Thread starter Thread starter lottoman
  • Start date Start date
L

lottoman

Hello All,

The RichTextBox is not responding to click events. I created a new
project dropped a RichTextBox.

Private Sub RichTextBox1_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles RichTextBox1.Click
MessageBox.Show("Responded")
End Sub

after clicking nothing happens. tried the same code in the TextChanged
event. works fine.

Any known issues?
 
lottoman said:
The RichTextBox is not responding to click events. I created a new
project dropped a RichTextBox.

Private Sub RichTextBox1_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles RichTextBox1.Click
MessageBox.Show("Responded")
End Sub

after clicking nothing happens. tried the same code in the TextChanged
event. works fine.

ACK, same behavior here. You can use the 'MouseUp' event instead.
 
Back
Top