Search found 6 matches

by Noramila
Tue Jan 30, 2024 6:20 am
Forum: Stimulsoft Reports.NET
Topic: Original image quality
Replies: 9
Views: 3463

Re: Original image quality

you can explore disabling JPEG compression. Adjust the imageQuality, imageResolution, and image compression method options accordingly and also check that the data column in the image component aligns with your requirements. On the other hand, for image compression, you can use online application su...
by Noramila
Fri Jan 12, 2024 6:37 am
Forum: Stimulsoft PDF Forms
Topic: java how to receive submit data.
Replies: 6
Views: 54495

Re: java how to receive submit data.

You're welcome.
by Noramila
Tue Jan 02, 2024 6:41 am
Forum: Stimulsoft PDF Forms
Topic: java how to receive submit data.
Replies: 6
Views: 54495

Re: java how to receive submit data.

Our backend program use java develop, how to receive forms submit data? Use the HttpServletRequest object's getParameter method to retrieve form data sent via POST requests. Ex. protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { St...
by Noramila
Thu Dec 28, 2023 7:28 am
Forum: Stimulsoft Reports.WEB
Topic: How to refresh Webviewer without reloading page
Replies: 8
Views: 10011

Re: How to refresh Webviewer without reloading page

Lech Kulikowski wrote: Wed Dec 27, 2023 8:06 am Hello,

Thank you for the information.
You are welcome.
by Noramila
Thu Dec 28, 2023 7:27 am
Forum: Stimulsoft Reports.NET
Topic: Sub reports with relative file path
Replies: 7
Views: 2965

Re: Sub reports with relative file path

Use relative paths for sub reports in the main report to enable flexible file movement.

Thank you.
by Noramila
Tue Dec 26, 2023 11:36 am
Forum: Stimulsoft Reports.WEB
Topic: How to refresh Webviewer without reloading page
Replies: 8
Views: 10011

Re: How to refresh Webviewer without reloading page

You can try this trough the JavaScript cade like. <script type="text/javascript"> function refreshWebViewer() { var webViewer = document.getElementById('<%= reportViewer.ClientID %>'); if (webViewer) { webViewer.refresh(); } } </script> And call the refreshWebViewer() function after the ac...