Stimulsoft is a company involved in developing tools for generating reports. Products are available for various software platforms: .NET Framework, Rich Internet Application, Internet applications, Java.
0
votes
1answer
14 views
Stimulsoft reports issue in firefox when exporting reports
I am developing a report using stimulsoft report designer 2009.3.600. I gave the report name "Account Registration" and when I save the reports to formats like .docx, .xls and .pdf it takes the report ...
0
votes
0answers
29 views
what should I do for a heavy report using stimulsoft?
I have a heavy report it takes 2 or 3 minutes for initializing load how I can set my report to load first page and then by clicking every page a progress appear and load another page.
1
vote
1answer
26 views
Hosted MVC Product — Key Strategies For Minimal Deployment To Several Thousand Sites
My product, at present has a full deployment size of 72MB, with 68 of those MB's being DLL's found in the bin folder of my app. The main application DLL itself is less than 2 MB, so the vast majority ...
0
votes
1answer
35 views
Stimul report automation : business object and navigation properties
Imagine I we have the Person class which have a navigation property named Skills and I want to access Skills of each person in the report.
But the code
report.RegBusinessObject("Persons", ...
0
votes
0answers
72 views
Sitecore Stimulsoft Report Designer Does not Support Adding Filter Variables
I am developing some Reports in Sitecore using Stimulsoft report designer and I need to have a filter like in this report http://web.stimulsoft.com/default.aspxreportname=ParametersSelectingCountry
...
1
vote
1answer
32 views
Overriding CSV Export default settings on asp.net mvc +stimulsoft
I'm using the stimulsoft mvc report viewer, on an asp.net mvc4 app. I am trying to figure out how to override the default settings for encoding and separator, so that my end users don't have to ...
0
votes
1answer
108 views
Adding a Filter to a Stimulsoft report using Web Designer
I am developing some reports using Stimulsoft web report designer. I need to add some data filters to those reports. Stimulsoft reports has data filters in built to it and they are shown when the ...
0
votes
1answer
113 views
Sitecore Stimulsoft web report designer Developed Reports Does not Render
I am developing some reports in Sitecore using stimulsoft web report designer. In that I need to access data in Sitecore master database. I created a sql data connection for the master database and ...
0
votes
1answer
106 views
Stimul Report : businessObjects doesn't load by showing the report
I save the report template :
report.Save("C:\\kk.mrt");
then I load the saved report and assign it BusinessObjects as Dictionaries
StiReport rptLoad = new StiReport();
...
0
votes
0answers
32 views
retrieving wrong result in Stimul?
in this post I mentioned calibre's tables,
I am using this code for retrieve my book list(I use calibre database):
SELECT id, title,
(SELECT name FROM books_authors_link AS bal JOIN ...
0
votes
3answers
182 views
How can I assign a normal table from a dynamic pivot table?
I need to make a report in Stimulsoft from the last 12 months from our current date, I used dynamic pivot table to make this, the original table is at figure 1
Then the pivot table is like the ...
1
vote
1answer
116 views
How can I change StiWebViewer language and culture?
I have a StiWebReport from StimulSoft components. I'd like to change the language to Persian (Farsi). The things with a line around them in the photo below, I'd like them to be in Persian.
How do I ...
1
vote
2answers
101 views
How users to change stimul design in application?
I created a report with stimul and show it in my application.
StiReport report = new StiReport();
report.Load(System.Windows.Forms.Application.StartupPath + "\\Report.mrt");
report.RegData("Table", ...
4
votes
1answer
213 views
Stimulsoft Auto Width Cells programmaticaly
I create a report with stimulsoft programmaticaly, I want to send a GridView to this report and get a PDF. I write some codes that makes this report but I want stimulsoft to auto size cells by my ...
0
votes
1answer
162 views
how using checkbox in stimulsoft
how change checked for checkbox in stimulsoft ?
Stimulsoft.Report.Components.StiCheckBox CheckBox1 = stiReport1.GetComponents()["CheckBox1"] as Stimulsoft.Report.Components.StiCheckBox;
...
1
vote
0answers
325 views
How to make a setup for Visual Studio 2012 project which uses SQL Server CE 4.0 and .net framework 4.0 or 3.5 sp1 with GAC registering?
I have created a Windows forms application project in VS 2012 which uses SQL Server CE 4.0 (Compact Edition) and .NET framework 3.5 sp1 and in future 4.0!
Now I don't know how to create a setup! ...
0
votes
1answer
164 views
How to remove unit separator character in “stimulsoft report viewer” when export to text?
there is Unit Separator character when I save as Text stimulsoft report in "report viewer" . If I save report in other formats like psf,word,etc everything is ok but when i save in Text,
there are ...
1
vote
1answer
335 views
Multiple Business Objects in Stimulsoft
We all are familiar with programming in 3 layers
I'm trying to Programming 3 layers with DTO as simple concept and create test report with Stimul
But there was trouble on the way to
I wrote the ...
0
votes
1answer
633 views
change stimulsoft report page size to equal text object field control width
I am trying to create a stimulsoft report for printing a single line of text up to maybe 50 characters on a continuous feed label printer, and I can't get the width or height of a report page to vary ...
0
votes
2answers
140 views
Stimulsoft is not supported by my server
I create some reports and use them in my website, after upload the report, I contact with my host provider, and they told me that they not support stimulsoft
What can I now to do ?!!
Is there anybody ...
1
vote
1answer
934 views
How Send a Dataset With 2 DataTable to Stimulsoft Report
i create a c# program and connected to stimulsoft for Make Reports.
i send a dataset with 2 datatable to my report with Below Code:
DataSet ds = new DataSet();
dtP.TableName = "dtP";
dtF.TableName = ...
0
votes
1answer
330 views
showing database image into stimulreport
I made a report by help of Stimulreport and want to show my image that came from database in my report.
the image is in byte[] format.
How can I do it?
Thanks.
0
votes
0answers
192 views
The type or namespace name 'StiReport' could not be found error
I installed StimulSoft2009 and did:
Added the .dll files of Stimulreport
inserted this code in header:
using Stimulsoft.Report;
added the below code in Button_Click event:
StiReport report = new ...
0
votes
2answers
896 views
How to sum value of a field in Stimulsoft Reports
I am using Stimulsoft Reports. How can I get the sum value of a field in a table on the page, not all reported?
0
votes
0answers
244 views
Visual Studio 2012 Error Reference.svcmap: Stimulsoft.Controls.Win can't find or read
Started a project in Visual Studio 2012 and got this reference error
and I have no clue were the fault is, since I have checked trough the Reference.svcmap and don't find anything about the reference ...
0
votes
1answer
920 views
Stimulsoft Report Section Control in C#
i use Stimulsoft Report to Make Reports in My Program (C# Program).
I want to Change (or Control) Visibility One Section (e.g. Footer Band) in Report From C# Code.
How Do this?
