1
Answer

Fast way to link items in richTextBoxes with text ?

Photo of itsme

itsme

20y
2k
1
What is the way to create fast links from highlighted words in a richTextBox to certain parts in text of this or other's richTextBoxes? I want to have an available description of some highlighted items in richTextBoxes when the user clicks on them.

Answers (1)

0
Photo of itsme
NA 26 0 20y
.................................... richTextBox1.LinkClicked += new LinkClickedEventHandler(Link_Clicked); ................................................ protected void Link_Clicked(object sender, LinkClickedEventArgs e) { ................................................. } Could someone tells me how: when click on an item in the richTexBox1 to display a specific area of the richTextBox1 ?