Text Box

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have an unbound text box called txtSummary.
txtSummary.Value is a summary of some keywords and other
stuff derived from other stuff (what I want to make clear
is that I have no control of the value) So I want to
build "sentences" with the information. Now txtSummary
displays the info ok, but in a messy format. I add by code
something like
txtSummary = Chr(13) & txtSummary
in a loop and yes I have the right info but still in a
messy format... the Chr(13) displays a small square in the
Report where txtSummary is displayed.
Ex.
What i have now:
txtSummary:
 
Sorry I didnt finish my last post

What i have now:

txtSummary: (square) Something1, something 1,(square)
something2, something2, something 2, (square) something3,
something3, something3, something3, something3 (square) ...

-- Where (square) is the small square that is placed for
every Chr(13) in the code.

What I want:

txtSummary:
Something1, something1
Something2, something2, something2
Something3, something3, something3, something3
....
....
SomehtingN

Where all the Somethings are in a different line, but all
in the same textbox

Any ideas?
thx.
 
Back
Top