Page 1 of 1

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

Posted: Thu Mar 04, 2010 10:23 am
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

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

Posted: Thu Mar 04, 2010 2:51 pm
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:

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

Posted: Thu Mar 04, 2010 4:26 pm
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.

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

Posted: Mon Mar 08, 2010 12:35 pm
by Rajwill
Thanks for your help

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

Posted: Mon Mar 08, 2010 12:42 pm
by Andrew
We are always ready to help you.

Thank you.