Hi,
I had a 2013 version of stimulsoft.net and in my code I am changing the report title in the code behind (VB.net) as this
CType(Report.Pages("Audit").GetComponents("Txt_Value"), Stimulsoft.Report.Components.StiText).Text.Value = TxtValue
with the latest version 2014.10.24 I get an error cannot convert type string to parameter sticollection
any idea how to programmatically change the report title now ?
Stimulsoft Reports.Net 2014.10.24 change title
-
- Posts: 4
- Joined: Thu Nov 13, 2014 2:25 pm
Re: Stimulsoft Reports.Net 2014.10.24 change title
I found the solution:
'change subtitle text
CType(Report.GetComponentByName("Txt_Value"), StiText).Text.Value = TxtValue
'change subtitle text
CType(Report.GetComponentByName("Txt_Value"), StiText).Text.Value = TxtValue
Re: Stimulsoft Reports.Net 2014.10.24 change title
Dear Massimo,
Thank you for the question. Does this mean that the issue is solved?
Thank you.
Thank you for the question. Does this mean that the issue is solved?
Thank you.
-
- Posts: 4
- Joined: Thu Nov 13, 2014 2:25 pm
Re: Stimulsoft Reports.Net 2014.10.24 change title
Yes that is correct
Re: Stimulsoft Reports.Net 2014.10.24 change title
Ok. Thank you and have a nice weekend.