I use the following code:
RichTextBox rtf = new RichTextBox();
rtf.Rtf = AnswerRTF;
rtf.SaveFile(sourceFile + "/" + fileName);
for creating a RichTextBox
file
but this code removes Header
and Footer
after creating that file.
What is the problem?