Search found 182 matches

by Guest
Thu Nov 15, 2007 9:30 am
Forum: Stimulsoft Reports.NET
Topic: Stimulsoft Reports.Net 2007.3 changes
Replies: 18
Views: 6767

Stimulsoft Reports.Net 2007.3 changes

<t>Now the export to the HTML supports watermarks.<br/> Now you can move selected components by minimal report units with help of Alt and cursors keys.<br/> Fix: The problem with the ExcelValue and the export to the Excel 2007.<br/> New global events - StiOptions.Engine.GlobalEvents.StartEditingInPr...
by Guest
Mon Nov 12, 2007 6:30 am
Forum: Stimulsoft Reports.NET
Topic: Managing page numbers and conditional include of an empty page
Replies: 2
Views: 1364

Managing page numbers and conditional include of an empty page

1. You can use three pages in the Designer. The first page is the page of the section data. The second page is the empty page. The third page is the page of the table of contents.

2. Set the "Reset Page Number" property of the third page to "True"

Thank you.
by Guest
Fri Nov 09, 2007 9:09 am
Forum: Stimulsoft Reports.NET
Topic: Error with stimulation reports 2007.2 and 2007.3.18 in the Web.
Replies: 9
Views: 2384

Error with stimulation reports 2007.2 and 2007.3.18 in the Web.

We have tried to reproduce this problem, but we couldn't. Send your reports with test data for analysis.

Thank you.
by Guest
Fri Nov 09, 2007 7:57 am
Forum: Stimulsoft Reports.NET
Topic: Cancel the report rendering (e.g. on keystroke)
Replies: 2
Views: 1307

Cancel the report rendering (e.g. on keystroke)

The description about this property(Report.Stop) has become outdated. We remake this property and you can use it without worries.

Thank you.
by Guest
Fri Nov 09, 2007 7:25 am
Forum: Stimulsoft Reports.NET
Topic: Display Empty record of master detail
Replies: 9
Views: 2345

Display Empty record of master detail

Try to set the "Reset Data Source" property of the databands from the container, to True

Thank you.
by Guest
Fri Nov 09, 2007 5:34 am
Forum: Stimulsoft Reports.NET
Topic: Can container push text below ?
Replies: 7
Views: 2339

Can container push text below ?

Unfortunately, shift mode isn't working with containers, this is a limitation of the report engine.

Thank you.
by Guest
Thu Nov 08, 2007 11:10 am
Forum: Stimulsoft Reports.NET
Topic: Count datarows in subreport
Replies: 11
Views: 3827

Count datarows in subreport

You must use first

Code: Select all

report.Load()
then

Code: Select all

report.RegData()
or use this methods in reverse order, but then you must use

Code: Select all

report.Dictionary.Synhronize()
after first two methods.

Thank you.
by Guest
Thu Nov 08, 2007 10:55 am
Forum: Stimulsoft Reports.NET
Topic: Can container push text below ?
Replies: 7
Views: 2339

Can container push text below ?

You can put a child band after the Footer band and move your text box to this child band.

Thank you.
by Guest
Thu Nov 08, 2007 10:44 am
Forum: Stimulsoft Reports.NET
Topic: Ignore parts of the datasource? Possible?
Replies: 4
Views: 1514

Ignore parts of the datasource? Possible?

Do you create a report in the Designer or by code? Do you register your data in the Designer or by code?

Thank you.
by Guest
Thu Nov 08, 2007 9:53 am
Forum: Stimulsoft Reports.NET
Topic: Display Empty record of master detail
Replies: 9
Views: 2345

Display Empty record of master detail

You can use the RenderingEvent event of this bands(D and C), where write the following:

Code: Select all

if (DataSourceName.Count == 0) DataBandName.CountData = 1
whereupon your databands should be shown in any case.

Thank you.