Search found 47 matches

by Scottioioio
Mon Mar 23, 2015 4:14 pm
Forum: Stimulsoft Reports.WEB
Topic: Stackoverflow when displaying large report in ReportViewer
Replies: 3
Views: 1780

Re: Stackoverflow when displaying large report in ReportView

Aleksey, we have upgraded to 2014.3 and, for the time being, are not seeing the Stackoverflow error.

We'll keep an eye on it and report back here if this issue pops back up.

Thanks
by Scottioioio
Sat Mar 21, 2015 12:00 am
Forum: Stimulsoft Reports.WEB
Topic: Stackoverflow when displaying large report in ReportViewer
Replies: 3
Views: 1780

Stackoverflow when displaying large report in ReportViewer

I have an ASP.NET WebForms web page that uses the StiWebViewer web control to display a Simulsoft report. This report is loaded programmatically using the following code: StiReport report = new StiReport(); report.Load("BigReport.mrt"); if (!Page.IsPostBack) reportViewer.ResetCurrentPage()...
by Scottioioio
Thu Dec 18, 2014 4:27 pm
Forum: Stimulsoft Reports.NET
Topic: Collapsing the space taken by hidden text
Replies: 11
Views: 5993

Re: Collapsing the space taken by hidden text

I watched the Columns property video. It looks as if it repeats rows across columns on the page. But that's not what my report does, mine reports fields of a single row across columns. Would it be possible for you to create a sample report that outputs the data as I've asked? My company has had two ...
by Scottioioio
Wed Dec 17, 2014 6:03 pm
Forum: Stimulsoft Reports.NET
Topic: Collapsing the space taken by hidden text
Replies: 11
Views: 5993

Re: Collapsing the space taken by hidden text

I am confused - the report you attach doesn't have the Table of Contents. The Table of Contents doesn't come from the database - it is hard coded. How would I put it in a Data Band? Also, what about the second page in the report file I attached in my post on Dec 20? That is in a Data Band, but I'm n...
by Scottioioio
Wed Dec 17, 2014 3:54 am
Forum: Stimulsoft Reports.NET
Topic: Collapsing the space taken by hidden text
Replies: 11
Views: 5993

Re: Collapsing the space taken by hidden text

The components on the first page (the Table of Contents) are static, yes, but the components in the second page are in a DataBand. Or is there some other type of band that needs to be used? Note that for the first page (the Table of Contents) are not coming from a database, but are hard-coded (altho...
by Scottioioio
Mon Dec 15, 2014 5:00 pm
Forum: Stimulsoft Reports.NET
Topic: Collapsing the space taken by hidden text
Replies: 11
Views: 5993

Re: Collapsing the space taken by hidden text

Hi Aleksey. Attached is a version of the SimpleList.mrt report from the WebDemo sample project available with Stimulsoft. I did not bother attaching the entire project or the Northwind XML data since I trust you have that at the ready. You'll see the report has two pages. The first is called TableOf...
by Scottioioio
Mon Dec 08, 2014 11:05 pm
Forum: Stimulsoft Reports.NET
Topic: Collapsing the space taken by hidden text
Replies: 11
Views: 5993

Re: Collapsing the space taken by hidden text

I've not used the DockStyle property before, but in playing with it it seems to make all text fields full width. However, in my DataBand I have various columns, so I might show Name to the left, and Title to the right of the name, on the same line, but when I start setting the DockStyle property it ...
by Scottioioio
Fri Dec 05, 2014 7:49 pm
Forum: Stimulsoft Reports.NET
Topic: Collapsing the space taken by hidden text
Replies: 11
Views: 5993

Collapsing the space taken by hidden text

I have a report that uses a DataBand bound to a DataSet to show results from a database query. In the DataBand I have a variety of text fields displaying various database fields. For example, the DataBind might contain text fields like: Name: [FirstName] [LastName] Occupation: [JobDesc] Phone: [Phon...
by Scottioioio
Fri Dec 05, 2014 7:42 pm
Forum: Stimulsoft Reports.NET
Topic: Is it possible to hide a page in a report?
Replies: 3
Views: 1757

Re: Is it possible to hide a page in a report?

Thanks, that is working perfectly.
by Scottioioio
Tue Dec 02, 2014 11:01 pm
Forum: Stimulsoft Reports.NET
Topic: Is it possible to hide a page in a report?
Replies: 3
Views: 1757

Is it possible to hide a page in a report?

I have a report made up of several pages and I need to be able to programmatically hide a page, if needed. For starters, I'm trying to just hard-code the logic to hide a page. I tried setting the Enabled property of a page in my report to False, but the page still gets rendered in the report. How do...