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 ?
How do I add new lines of text with vb code to a report already created ?
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: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
How do I add new lines of text with vb code to a report already created ?
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:
Thank you.
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";
How do I add new lines of text with vb code to a report already created ?
Thanks for your help
How do I add new lines of text with vb code to a report already created ?
We are always ready to help you.
Thank you.
Thank you.