How do I add new lines of text with vb code to a report already created ?

Stimulsoft Reports.NET discussion
Post Reply
Rajwill
Posts: 16
Joined: Mon Feb 15, 2010 2:38 pm

How do I add new lines of text with vb code to a report already created ?

Post by Rajwill »

Hi,
Currently I have a report created in my web application, and I want to the users can add a new line of text inside the ReportTittleBand.

Is it possible?

add a new tittle to a a report already created?:shame:

Thanks in Advance
Rajwill
Posts: 16
Joined: Mon Feb 15, 2010 2:38 pm

How do I add new lines of text with vb code to a report already created ?

Post by Rajwill »

Rajwill wrote:Hi,
Currently I have a report created in my web application, and I want to the users can add a new line of text inside the ReportTittleBand.

Is it possible?

add a new tittle to a a report already created?:shame:

Thanks in Advance

every time I try to add the new line delete existing ones within the report, I means if in the report create I have a Tittle with the text "REPORT OF PURCHASE ORDERS" and I want add a new text line down, like " Start Date : 02/08/2009 Final Date:01/01/2010", when I compile and run the report, just show me the second line "Start Date....":waaaht:
Jan
Posts: 1265
Joined: Thu Feb 19, 2009 8:19 am

How do I add new lines of text with vb code to a report already created ?

Post by Jan »

Hello,

Please set WordWrap property of text box to true. Also set CanGrow property of text box to true. Please use following code to change text component:

Code: Select all

text.Text.Value += "test";
Thank you.
Rajwill
Posts: 16
Joined: Mon Feb 15, 2010 2:38 pm

How do I add new lines of text with vb code to a report already created ?

Post by Rajwill »

Thanks for your help
Andrew
Posts: 4109
Joined: Fri Jun 09, 2006 3:58 am

How do I add new lines of text with vb code to a report already created ?

Post by Andrew »

We are always ready to help you.

Thank you.
Post Reply