Search found 103 matches

by JohnW
Mon Nov 27, 2023 7:30 pm
Forum: Stimulsoft Reports.WEB
Topic: Read Value for Object in client app
Replies: 3
Views: 1862

Re: Read Value for Object in client app

This is a portion of VB code but I think does what you want. Read current value and compares it to previous value. 'loads report data into table. Dim dt As DataTable = report.Dictionary.GetDataSet("IS5LicensePermitsRPT").Tables(0) 'set variables Dim strEmail As String = "" Dim in...
by JohnW
Wed Sep 27, 2023 3:28 pm
Forum: Stimulsoft Reports.WEB
Topic: Is this a bug?
Replies: 1
Views: 6855

Is this a bug?

When I create variable for a date, I want the user to enter it at the the time report is first presented. Then populate the data based on date entered. This is part of the code used to render to the report. Dim path As String = Server.MapPath("LicensePermitsBatchRPT.mrt") report.Load(path)...
by JohnW
Thu Jul 27, 2023 4:06 pm
Forum: Stimulsoft Reports.WEB
Topic: Report not rendering when too much data are selected from database
Replies: 22
Views: 6799

Re: Report not rendering when too much data are selected from database

My last suggestion. In looking at the report you have a number of databands set to print if empty = true. My understanding is that is telling the report to print those sections even though there is nothing there. That could account for your extra pages. You can check but these are the databands set ...
by JohnW
Wed Jul 26, 2023 3:09 pm
Forum: Stimulsoft Reports.WEB
Topic: Report not rendering when too much data are selected from database
Replies: 22
Views: 6799

Re: Report not rendering when too much data are selected from database

What happens to the report if you just run it for a single account? Are you actually missing reports for accounts? Also check the last account that does print correctly, if there is some kind of sequence to the records try to run the report against the next record that comes after it. Since you tell...
by JohnW
Tue Jul 25, 2023 7:06 pm
Forum: Stimulsoft Reports.WEB
Topic: Report not rendering when too much data are selected from database
Replies: 22
Views: 6799

Re: Report not rendering when too much data are selected from database

I believe Lech is asking for data to connect to and run the report against. Its hard to say by the report whether its a data problem or a report problem. I did take the liberty of looking at the report sample in the thread. I will say this is one massive report, it has some 23 datasets in it, graphi...
by JohnW
Wed Jul 19, 2023 3:08 pm
Forum: Stimulsoft Reports.WEB
Topic: Report not rendering when too much data are selected from database
Replies: 22
Views: 6799

Re: Report not rendering when too much data are selected from database

If you apply filters only for the DataBand, then all data from your query will be retrieved and only then will filter be applied. If you add the filter to the query, only filtered data will be retrieved from the database. I completely agree, better said then my comment. Just because you can do some...
by JohnW
Mon Jul 17, 2023 7:56 pm
Forum: Stimulsoft Reports.WEB
Topic: Report not rendering when too much data are selected from database
Replies: 22
Views: 6799

Re: Report not rendering when too much data are selected from database

Just a thought - you might try to scheme out a way to control your data query so it is only returning the data you want. My personal experience has been that is a more efficient way than asking the report to control it (the data) at presentation time.
by JohnW
Mon Jun 12, 2023 5:50 pm
Forum: Stimulsoft PDF Forms
Topic: Application Developer receiving Forms Data
Replies: 1
Views: 8065

Application Developer receiving Forms Data

I see the announcement for the new Forms tool. YThe announcement says when the person clicks submit the data is sent to the application developer.

How is the data sent? I am curious how this data can be captured for further processing.
In what form is it sent (xml, csv, etc)?

Thanks
by JohnW
Mon Jun 05, 2023 2:35 pm
Forum: Stimulsoft Reports.WEB
Topic: Batch Email Part 2
Replies: 9
Views: 1233

Re: Batch Email Part 2

Lech: I do have to deal data but I use a dataset as the vehicle. There is likely a far more elegant way to do this, but I have yet to find it. Essentially I am using this process I built my report in the designer and made certain it is presenting what I wanted. In code for the GetReport event I did ...
by JohnW
Thu Jun 01, 2023 3:14 pm
Forum: Stimulsoft Reports.WEB
Topic: Date Range Variable Issue
Replies: 1
Views: 408

Date Range Variable Issue

I have a simple report that needs to collect data based on a simple date range. I created a date range variable and the needed parameters. If I mark the datarange value as 'not assigned', when I run the report it will not allow the user to enter a value. If I mark it 'assigned' it does. Is this the ...