Search found 16 matches

by admin@secsol.co.uk
Mon Sep 25, 2023 10:52 am
Forum: Stimulsoft Reports.BLAZOR
Topic: StiDataIndicatorValue.CleanCache() Error
Replies: 2
Views: 53437

Re: StiDataIndicatorValue.CleanCache() Error

It turns out this error was because I replaces the System.Drawing import in my app with a different package that was not Windows dependent.

So either the Blazor reporting is dependent upon System.Drawing or it is clashing with with the other package.
by admin@secsol.co.uk
Mon Sep 25, 2023 9:19 am
Forum: Stimulsoft Reports.BLAZOR
Topic: StiDataIndicatorValue.CleanCache() Error
Replies: 2
Views: 53437

StiDataIndicatorValue.CleanCache() Error

I have upgraded to version 2023.3.4 and I keep getting the following error appear in the function StiDataIndicatorValue.CleanCache() System.TypeLoadException HResult=0x80131522 Message=Could not load type 'SixLabors.ImageSharp.Drawing.PolygonClipper.ClippablePath' from assembly 'SixLabors.ImageSharp...
by admin@secsol.co.uk
Fri Dec 23, 2022 5:53 am
Forum: Stimulsoft Reports.BLAZOR
Topic: Refreshing Report In Designer.
Replies: 5
Views: 9180

Re: Refreshing Report In Designer.

I have emailed you a small test project that demonstrates this. If you click the between the two buttons, each of which loads a different report you will that sometimes the designer updates but most of the time it does not. The strange thing is the Preview shows the loaded report even though the des...
by admin@secsol.co.uk
Thu Dec 22, 2022 12:21 pm
Forum: Stimulsoft Reports.BLAZOR
Topic: Refreshing Report In Designer.
Replies: 5
Views: 9180

Re: Refreshing Report In Designer.

Hi,

Blazor Server
by admin@secsol.co.uk
Tue Dec 20, 2022 2:06 pm
Forum: Stimulsoft Reports.BLAZOR
Topic: Refreshing Report In Designer.
Replies: 5
Views: 9180

Refreshing Report In Designer.

I load my reports from a database in my application, but since I upgraded to 2023.1.1 when I load a report the designer no longer shows the new loaded report.

It is as if it hasn't picked up that the report has changed.

Is there a Refresh() call or anything similar for the designer?
by admin@secsol.co.uk
Tue Oct 04, 2022 10:51 am
Forum: Stimulsoft Reports.BLAZOR
Topic: Direct Printing
Replies: 6
Views: 10570

Re: Direct Printing

The printer is on the client side
by admin@secsol.co.uk
Fri Sep 30, 2022 12:02 pm
Forum: Stimulsoft Reports.BLAZOR
Topic: Direct Printing
Replies: 6
Views: 10570

Re: Direct Printing

Okay, I have found this in the manual : (even though I have a Report Viewer on this page)

StiBlazorHelper.Initialize(JsRuntime);

If I do this first the PDF is displayed n the web browser.

I don't want this, i want to send the PDF to a printer directly not to preview it first
by admin@secsol.co.uk
Fri Sep 30, 2022 11:56 am
Forum: Stimulsoft Reports.BLAZOR
Topic: Direct Printing
Replies: 6
Views: 10570

Re: Direct Printing

I tried this after loading my report

StiReportResponse.PrintAsPdf(report);

and nothing happened.... no print or preview or request to save as......
by admin@secsol.co.uk
Fri Sep 30, 2022 9:42 am
Forum: Stimulsoft Reports.BLAZOR
Topic: Direct Printing
Replies: 6
Views: 10570

Direct Printing

I am trying to print directly from my Report (without having to view a preview) I have create a Report and loaded the report but when I call : Report.Print(); It throws an Exception error : System.NullReferenceException : 'Object reference not set to an instance of an object. Should just calling Pri...
by admin@secsol.co.uk
Wed Sep 28, 2022 2:40 pm
Forum: Stimulsoft Reports.BLAZOR
Topic: Redirecting Response Output
Replies: 1
Views: 8158

Redirecting Response Output

How can I use the example as shown here to redirect the ResponseAsPdf() to a MemoryStream? @page "/" @using System.Data @using System.IO @using Stimulsoft.Base @using Stimulsoft.Report @using Stimulsoft.Report.Blazor @using Stimulsoft.Report.Dictionary @using Stimulsoft.Report.Web @inject ...