Search found 2913 matches

by Edward
Fri Jun 16, 2006 3:07 am
Forum: Stimulsoft Reports.NET
Topic: How to draw a line object
Replies: 2
Views: 2053

How to draw a line object

Stone wrote:hello Stimulsoft Teams. During using StimulReport in our project. we need draw a line or slash. How to do it?
Please use Shape Component for drawing lines. Shape type property allows you to choose type of shape you need.
by Edward
Thu Jun 15, 2006 8:10 am
Forum: Stimulsoft Reports.NET
Topic: Totals with condition
Replies: 2
Views: 3321

Totals with condition

Is it possible to calculate totals with condition? StimulReport.Net allows to add a condition to an aggregate function. When you add a condition to an aggregate function you should add If to this aggregate function name and additional argument with condition. For example: {SumIf(Products.UnitsInSto...
by Edward
Thu Jun 15, 2006 7:58 am
Forum: Stimulsoft Reports.NET
Topic: Redistribution license
Replies: 2
Views: 2161

Redistribution license

I develop application on one machine using Single License for 1 developer. Can i use that in client machine? Yes, you can use our products in your client machine. Our products is licensed per developer. The license type depends on the number of developers which will use our product. Stimulsoft offe...
by Edward
Thu Jun 15, 2006 4:42 am
Forum: Stimulsoft Reports.NET
Topic: Upgrade from 1.40 to 1.60
Replies: 2
Views: 2069

Upgrade from 1.40 to 1.60

Michael Holz wrote: In Jan-2006 i have purchased version 1.40 of Stimulsoft Reports. Now i want upgrade to 1.60. Can i download SR 1.60 from "Registered Users" area for free or i need purchase upgrade?
Yes, you can download Stimulsoft Report ver. 1.6 from "Registerd Users" area for free.
by Edward
Wed Jun 14, 2006 6:46 am
Forum: Stimulsoft Reports.NET
Topic: Source code of report designer
Replies: 2
Views: 2873

Source code of report designer

[quote="Michael" K.]
If we buy the Stimulsoft reporting tool, will we be getting the source code for the Stimulsoft Reporting controls and the Report designer ?[/quote]

Yes of course, you will get source code of Stimulsoft Reporting Controls and of the Stimulsoft Report designer.
by Edward
Wed Jun 14, 2006 5:22 am
Forum: Stimulsoft Reports.NET
Topic: Localized report
Replies: 2
Views: 3232

Localized report

I need create report localized into five languages. Can i use some feature from Stimulsoft Reports or i must duplicate mrt file and translate it to each language? You do not need to create different *.mrt files. To localize your report in several languages, please see the example of GlobalizedReport.
by Edward
Wed Jun 14, 2006 5:22 am
Forum: Stimulsoft Reports.NET
Topic: Localized report
Replies: 2
Views: 3232

Localized report

You do not need to create different *.mrt files.
To localize your report in several languages, please see the example of GlobalizedReport.
by Edward
Wed Jun 14, 2006 4:58 am
Forum: Stimulsoft Reports.NET
Topic: Export to PDF
Replies: 3
Views: 2483

Export to PDF

<t>For exporting report to pdf file without using dialog box do the following:<br/> <br/> StiReport report = new StiReport();<br/> report.Load("report.mrt");<br/> report.Render();<br/> <br/> StiPdfExportService pdfExport = new StiPdfExportService();<br/> pdfExport.ExportPdf(report, "document.pdf");<...
by Edward
Wed Jun 14, 2006 4:51 am
Forum: Stimulsoft Reports.NET
Topic: Source code of report designer
Replies: 2
Views: 2873

Source code of report designer

Yes you get source code of Stimulsoft Reporting Controls and Report designer.
by Edward
Wed Jun 14, 2006 4:45 am
Forum: Stimulsoft Reports.NET
Topic: Changing sort in runtime
Replies: 3
Views: 2652

Changing sort in runtime

To change sorting see below:

DataBand1.Sort = new string[2]
{
"ASC",
"Name"
};