Good afternoon everyone.
I wonder, how do I print (USB printer) data from a text file
Via Stimulsoft, without the need to visualize a report.
Thank you in advance.
Print data, from a text file, without the need to visualize a report.
Print data, from a text file, without the need to visualize a report.
Hello,
Please provide more details regarding your issue.
Thank you.
Please provide more details regarding your issue.
Thank you.
Print data, from a text file, without the need to visualize a report.
I need read a text file, and use then in stimulsoft,
I know that the rich text can do it, but I don't know how.
I saw some samples using the getvalue event, but i need do something diferent
I using stimulsoft like a class,
the rich text accept a text file like parameter?
I know that the rich text can do it, but I don't know how.
I saw some samples using the getvalue event, but i need do something diferent
I using stimulsoft like a class,
the rich text accept a text file like parameter?
Print data, from a text file, without the need to visualize a report.
Hello,
You can use the following code:
Thank you.
You can use the following 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();