Marge RTF strings

  • Thread starter Thread starter sb Luis
  • Start date Start date
S

sb Luis

Hi,
1- I am going to marge contents of 3 RichTextBox (RTF) to one RTF string.
Do you know any componet to make it simple?
2- Do you know a good RTF Editor and also a HTML Editor component in C# .
thanks.
 
sb said:
Hi,
1- I am going to marge contents of 3 RichTextBox (RTF) to one RTF
string. Do you know any componet to make it simple?

Just concatenate the strings, should be ok. Or use one richttextbox
and append the other text to that one, then grab the full text.
2- Do you know a good RTF Editor and also a HTML Editor component in
C# . thanks.

The richtextbox should be enough. All you need is to add some
edit-oriented buttons which effectively switch on/off stuff in the
richtextbox, for example that the selection is now bold, or italic...

FB




--
 
Hi,
There is a problem in concatenating the strings or using one richttextbox
and append the other texts. when I run the following codes:
1) RichTextBox3.Text = String.Concat(richTextBox1.Text, richTextBox2.Text);
2) RichTextBox4.Rtf = String.Concat(richTextBox1.Rtf, richTextBox2.Rtf);

in (1) Non formated Text is the result.
in (2) there is a problem, and the result will be 'richTextBox1.rtf'.
Do have a solution?
S. Luis.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top