Search found 11 matches

by FT1
Sat Feb 20, 2021 5:34 pm
Forum: Stimulsoft Reports.NET
Topic: Nested Databands Problem
Replies: 1
Views: 776

Nested Databands Problem

Hello, we have a complex nested XML structure and we are not able to make it work on Stimulsoft Reports The sample XML structure is like this: <?xml version="1.0" encoding="UTF-8"?> <job> <document property_d1="d1"> <header property_c2="c2" /> <invoice1 proper...
by FT1
Fri Jun 12, 2020 6:25 pm
Forum: Stimulsoft Reports.NET
Topic: Memory Leak
Replies: 2
Views: 1360

Re: Memory Leak

Hello To everyone reading about this: We did a test with a static assembly pool and the memory went completely stable after a 10K render test run So the problem is here: Assembly DLL = Assembly.Load(Convert.FromBase64String("some long base64 here....")); We are figuring out how to Load the...
by FT1
Thu Jun 11, 2020 12:17 am
Forum: Stimulsoft Reports.NET
Topic: Memory Leak
Replies: 2
Views: 1360

Memory Leak

Hello, we are having a potential Memory Leak Issue with stimulsoft rendering on Windows Server This is our code: string DS = Convert.FromBase64String("some long base64 here..."); Assembly DLL = Assembly.Load(Convert.FromBase64String("some long base64 here....")); using (StiReport...
by FT1
Tue Feb 04, 2020 5:31 pm
Forum: Stimulsoft Reports.NET
Topic: precompiled reports on 2020.1
Replies: 2
Views: 1307

Re: precompiled reports on 2020.1

Just in case you need it, this is the code we use: private static string RenderPDF(Assembly DLL, string XML) using (StiReport report = StiReport.GetReportFromAssembly(DLL)) { report.Dictionary.Resources["DS"].Content = Convert.FromBase64String(XML); report.Render(false); using (MemoryStrea...
by FT1
Tue Feb 04, 2020 5:01 pm
Forum: Stimulsoft Reports.NET
Topic: precompiled reports on 2020.1
Replies: 2
Views: 1307

precompiled reports on 2020.1

Our solution implements your product to render PDF reports We had problems working on high volume output with MRT templates and XML datasources on the compilation stage The problem was solved by using precompiled DLL templates That approach forced us to work with .NET 4 but we wanted to use .net cor...
by FT1
Tue Jul 16, 2019 4:24 pm
Forum: Stimulsoft Reports.NET
Topic: Modify the Report Designer
Replies: 3
Views: 1179

Re: Modify the Report Designer

Oh, that's great!!

Thanks
by FT1
Tue Jul 16, 2019 5:46 am
Forum: Stimulsoft Reports.NET
Topic: Modify the Report Designer
Replies: 3
Views: 1179

Modify the Report Designer

We would like to add the Report designer to our software but in a reduced functionality version
Is there a way to disable (or hide) some of the designer capabilities? like a using a fixed datasource or disable export?

Best Regards

Francesco
by FT1
Mon Jul 01, 2019 10:01 pm
Forum: Stimulsoft Reports.NET
Topic: Compilation mode on .net Core
Replies: 1
Views: 1015

Compilation mode on .net Core

is there a expected release date for compilation mode on .net core or .net standard?
by FT1
Thu Mar 07, 2019 5:01 pm
Forum: Stimulsoft Reports.WEB
Topic: Concurrency error
Replies: 6
Views: 2074

Re: Concurrency error

Hello, you have the sample report on resources.zip and the sample code on the body of the post, isn't that enough?
by FT1
Thu Mar 07, 2019 2:47 am
Forum: Stimulsoft Reports.WEB
Topic: Concurrency error
Replies: 6
Views: 2074

Re: Concurrency error

Oh well, Interpretation mode turn us back to not been able to select a particular position in a table since the expression "{Document_NOT.DataTable.Rows[1]["Note"]}" is not compatible with that mode Back to step one, any thoughts? Why is not possible to load the pre-compiled repo...