Hi,
is there any possibility of storing report definition into database instead of file and and loading into viewer from the database or some memory stream?
regards
This is coming for 12.1. If you want we could let you know when we have an installer that it's ready to try it out.
Thanks,
Andres
I'd like to ask you about one more thing. Is there any possibility of making report outside of solution and load it not as component ?
I'm trying to load it as below:
ultraReportViewer1.RenderSettings.DefinitionUri = new System.Uri(Application.StartupPath + @"\Reports1\Test.igr", System.UriKind.RelativeOrAbsolute);
but I'm getting error: Could not load report definition...
Ok,
much thanks for your help :)
Hi doomedmorale,
You can do this but only relative to the application path. For instance, consider you have a folder named "Reports" under the same folder your application executable is located:
ultraReportViewer1.RenderSettings.DefinitionUri = new Uri("Reports/Test.igr", UriKind.Relative);
Test.igr doesn't need to be marked neither as component nor as resource.
However, as it was mentioned in previous posts, the report loading mechanism will be improved for 12.1
Hope it helps. Any other question please let us know.
Regards,
Damián