RDL/RDLC import not working
Hi,
Evaling the product (FastReport.NET). And the main feature that get me here is that it claims to support import from RDL. I have tried importing some report of mine and got many errors: Can't find object <tag name>. Where <tag name> is all the tags I have in the XML.
So I thought I might have something in the report that is wrong. I saved some RDL with only one text box from the fast-report designer. Tried to load it at runtime and I get the same errors (on different tags ofcourse).
Something I am doing wrong?
Code for loading RDL:
This code is on the button click event on some winform. report1 is an object I dropped on the designer.
Evaling the product (FastReport.NET). And the main feature that get me here is that it claims to support import from RDL. I have tried importing some report of mine and got many errors: Can't find object <tag name>. Where <tag name> is all the tags I have in the XML.
So I thought I might have something in the report that is wrong. I saved some RDL with only one text box from the fast-report designer. Tried to load it at runtime and I get the same errors (on different tags ofcourse).
Something I am doing wrong?
Code for loading RDL:
FastReport.Report r = new FastReport.Report();
r.Load("Untitled.rdlc");
r.Show();
This code is on the button click event on some winform. report1 is an object I dropped on the designer.
Comments
Basically what I need is a way to convert/run RDL in fast reports but with no user interaction. Is there a way to do that?