Question Copy RichTextBox to another RichTextBox

digitaldrew

Well-known member
Joined
Nov 10, 2012
Messages
167
Programming Experience
Beginner
I haven't had much success with this and hopefully someone can give me some help here..

I have a small log box on my main form which is constantly being updated with data..If someone checks a "View Larger" box then I have a new form that comes up with an extended log box. I would like to know the best way of moving the data from one text box to the other once the View Larger box is checked.

Any help would be greatly appreciated!
 
If you are formatting the text then get the Rtf property of one and assign it to the Rtf property of the other. If you're not formatting then use the Text property instead.
 
Back
Top