highlight text in 2 textboxes at the same time
- by user1907736
I am trying to create a packet analyzer for an online game using C# and I am new to c#.
I have 2 RichTextBoxes, 1 shows the packet in bytes and the other one shows the packet in ANSI.
Here is what I want to achieve:
When I select(highlight) data in the byte text box, I want the corresponding data in the ANSI text box to also be highlighted. (and vice-versa)
When I change data in the 1 of the textboxes, I want the corresponding data in the other textbox to also be changed.
How do I do these?