Search found 11 matches

by deestinee
Sat Jul 03, 2021 8:06 pm
Forum: Stimulsoft Reports.NET
Topic: .NET libraries index out of range
Replies: 1
Views: 476

.NET libraries index out of range

Hello,

we have made a report, see files attached, and it is working fine under standalone version of Stimulsoft, but when running the report on server with .NET libraries we are getting Index out of range error. Do you where could be the issue?

Thank you, Filip
by deestinee
Wed Jan 27, 2021 12:55 pm
Forum: Stimulsoft Reports.NET
Topic: method GetDataListFromDataColumn() not returning values
Replies: 3
Views: 1122

Re: method GetDataListFromDataColumn() not returning values

Hello, sure. I have a public static List <object> called "Rep", which I want to populate with GetDataListFromDataColumn() method. Now, I have this method, which should populate List "Rep" with data from "Data.ColData1". public Report() { this.AddData(); this.InitializeC...
by deestinee
Mon Jan 25, 2021 11:17 am
Forum: Stimulsoft Reports.NET
Topic: method GetDataListFromDataColumn() not returning values
Replies: 3
Views: 1122

method GetDataListFromDataColumn() not returning values

Hello, I am having trouble with GetDataListFromDataColumn() method. It´s returning values only if it´s called in Events. Otherwise it is returning null. Is there a way to use this method without an Event? As attachments there is a test report and XML file containing data. I am using GetDataListFromD...
by deestinee
Sat Dec 19, 2020 6:04 pm
Forum: Stimulsoft Reports.NET
Topic: Column value from index
Replies: 5
Views: 2050

Re: Column value from index

Hello,

I have another question. I would like to get a total sum of all dynamically added columns. Is it possible to use Text_Sum.CalcItem(Data.Column) with column index? I mean something like: Text_Sum.Calcitem(Data.Column[1]).
Thank you.
by deestinee
Wed Dec 16, 2020 9:09 pm
Forum: Stimulsoft Reports.NET
Topic: Column value from index
Replies: 5
Views: 2050

Re: Column value from index

Hello, It did not work. In databand it is showing same value in all rows. I had to use system variable Line and Column. Then increment the Column variable. public void txt_GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e) { e.Value = ToString(sender, Data.DataTable.Rows[Line-1...
by deestinee
Tue Dec 15, 2020 6:05 pm
Forum: Stimulsoft Reports.NET
Topic: Column value from index
Replies: 5
Views: 2050

Column value from index

Hello, I´m trying to get a value from column by index, but it is not working. public void txt_GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e) { e.Value = ToString(sender, Data.Columns .ToString(), true); } If I call this, only column name will appear in databand, I also trie...
by deestinee
Thu Nov 26, 2020 8:23 am
Forum: Stimulsoft Ultimate
Topic: Input string incorrect format
Replies: 1
Views: 2307

Input string incorrect format

Hello, I am having trouble with setting the collumn width using a variable. When I set the variable for the first time, it renders just find. Then I save the report, close it, reopen it again and got error "Input string is not in correct format". Attached is report with data and exception ...
by deestinee
Thu May 21, 2020 1:53 pm
Forum: Stimulsoft Ultimate
Topic: decimal.Parse
Replies: 5
Views: 3154

Re: decimal.Parse

Hello,

I am using NET component.

Thank you.
by deestinee
Mon May 18, 2020 8:58 am
Forum: Stimulsoft Ultimate
Topic: decimal.Parse
Replies: 5
Views: 3154

Re: decimal.Parse

Hello, unfortunately neither method is working. When I trie following code {Decimal.Parse(Card.Test,System.Globalization.CultureInfo("en-GB"))} I get this error: "The type or namespace name 'CultureInfo' does not exist in the namespace System.Globalization". When I trie the other...
by deestinee
Tue May 12, 2020 3:12 pm
Forum: Stimulsoft Ultimate
Topic: decimal.Parse
Replies: 5
Views: 3154

decimal.Parse

Hello, I´m running the latest version of Stimulsoft designer 2020.2.3 and having problem with decimal.Parse function. If I trie to convert string (containing number) to decimal it shows null. Attached is a test report. Thank you.