i have two Richtextbox and in one textbox i want to write some text and concurrently that text will show in other textbox
Please tell me how i can rectify this problem
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Hirendra SisodiyaPosted Apr 8, 2010, 8:15 AM
hello Nim
write code on TextChanged event of RichTextBox2
RichTextBox1.Text = RichTextBox2.Text;
and write code on TextChanged event of RichTextBox1
RichTextBox2.Text = RichTextBox1.Text;
Thanks
Please mark as answere if it helps