vote up 2 vote down star

I have a report with many fields that I'm trying to get down to 1 page horizontally (I don't care whether it's 2 or 200 pages vertically... just don't want to have to deal with 2 pages wide by x pages long trainwreck). That said, it deals with contact information. My idea was to do:
Name:        Address:   City:        State:  ...
Jon Doe     Addr1       ThisTown   XX ...
                 Addr2
                 Addr3
----------------------------------------------------------
Jane Doe   Addr1       ThisTown   XX ...
                Addr2
                Addr3
----------------------------------------------------------

Is there some way to set a textbox to be multi-line (or the SQL Result)? Have I missed something bloody obvious?

Thanks in advance!

flag

4 Answers

vote up 0 vote down

link break do this

chr(10)

link|flag
vote up 2 vote down check

FYI, I continued to research and answered my own question. From: http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=2235413&SiteID=17

I just altered my report's text box to: "=Fields!Addr1.Value + VbCrLf + Fields!Addr2.Value + VbCrLf + Fields!Addr3.Value"

link|flag
vote up 0 vote down

The CanGrow Property is on by default, and I've double checked that this is true. My problem is that I don't know how to force a line-break. I get the 3 address fields that just fills a line, then wraps to another. I've tried "/n", "\n" (since I can never remember which is the correct slash to put), <br>, <br /> (since the report will be viewed in a ReportViewer control in an ASP.NET website). I can't think of any other ways to wrap the text.

Is there some way to get the results from the database as 3 lines of text/characters?

link|flag
vote up 0 vote down

I believe you need to set the CanGrow property to true on the Textbox. See http://msdn.microsoft.com/en-us/library/ms159116(SQL.90).aspx for some details.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.