print report from Label Printers
print report from Label Printers
we are planing to do our new project using Reports Designer.Web. But the prob is client want to Create dynamic reports for label printing.And they wanna parse these reports in to another printer languages such as ZPL/EPL and Intermec FingerPrint. is there a anyway we can parse report data and formatting objects(font size,family,Text align) in to a readable format. other than deserializing .mrt xml file.(looking for a some kind of a export or something which u have done for dotmetrix printers.)
tnx in advanced
tnx in advanced
print report from Label Printers
Hello.
You can export a report to more than 20 formats: PDF, XPS, Excel, Word, HTML, RTF, XML etc.
We are considering the possibility of adding ZPL/EPL export now.
Thank you.
Mrt-file is a report template, not the rendered report.Chasoo wrote:we are planing to do our new project using Reports Designer.Web. But the prob is client want to Create dynamic reports for label printing.And they wanna parse these reports in to another printer languages such as ZPL/EPL and Intermec FingerPrint. is there a anyway we can parse report data and formatting objects(font size,family,Text align) in to a readable format. other than deserializing .mrt xml file.(looking for a some kind of a export or something which u have done for dotmetrix printers.)
You can export a report to more than 20 formats: PDF, XPS, Excel, Word, HTML, RTF, XML etc.
We are considering the possibility of adding ZPL/EPL export now.
Thank you.
print report from Label Printers
That function would be great to have!Aleksey wrote:We are considering the possibility of adding ZPL/EPL export now.
/Joakim
print report from Label Printers
Hello,
Ok.
We let you know about the result.
Thank you.
Ok.
We let you know about the result.
Thank you.
print report from Label Printers
Hello.
At this moment this feature is little demand and we have more priority tasks.
Therefore he consider that it is inappropriate.
As a recommendation to solve your problem we can advise you to convert the report in your format after rendering report with this code:
Thank you.
We've discussed your wish with our team-leader.JockeD wrote:That function would be great to have!Aleksey wrote:We are considering the possibility of adding ZPL/EPL export now.
At this moment this feature is little demand and we have more priority tasks.
Therefore he consider that it is inappropriate.
As a recommendation to solve your problem we can advise you to convert the report in your format after rendering report with this code:
Code: Select all
StiReport rep = new StiReport();
rep.Load(@"d:\report.mrt");
rep.Render();
foreach (StiPage page in rep.RenderedPages)
{
//store page info
// .....
foreach (StiComponent comp in page.Components)
{
if (comp is StiText)
{
StiText text = comp as StiText;
//store text line
// .....
}
if (comp is StiImage)
{
StiImage image = comp as StiImage;
//store image
// .....
}
// store other component
// .....
}
}
print report from Label Printers
Hello,
We can get the report elements in this way.bt how abt the report format ?
tnx
We can get the report elements in this way.bt how abt the report format ?
tnx
print report from Label Printers
Hello.
Thank you.
You can export this generated report to EPL/ZPL format.Chasoo wrote:We can get the report elements in this way.bt how abt the report format ?
Thank you.