hi
how to load rtf file? and rich text parsing rtf file?
thx
load rtf file?
load rtf file?
Hello,
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Thank you.
Sorry, maybe we did not exactly understand your question. Could you explain your issue in more details?
Thank you.
load rtf file?
i have test.rtf on drive c:\wwwroot\test.rtf, how do i load that file from code? but not from report event
thx
thx
load rtf file?
Hello,
You can use the following code in your code:
Thank you.
You can use the following code in your code:
Code: Select all
StiReport report = new StiReport();
report.Load();
Stimulsoft.Report.Components.StiRichText rt = report.GetComponents()["RichText1"] as StiRichText;
RichTextBox rtb = new RichTextBox();
rtb.LoadFile(@"e:\Sample.rtf");
rt.RtfText = rtb.Rtf;
report.Compile();
report.Show();
load rtf file?
it's work
thank you
thank you
load rtf file?
Great!
Have a nice day!
Thank you.
Have a nice day!
Thank you.