How do I get notified of a selection change in a text box in .NET 2.0? I was unable to find a SelectionChanged event or an OnSelectionChanged method. What is the best workar
You can use TextBox also.
Write a function GetMyPosition() and put in the events
When you want to notify the highlighting of a text, you also have to use
You could use a RichTextBox and set Multiline to false. It has a OnSelectionChanged.
Well, I guess this may help! You will need to use RichTextBox still.