"First Word" & chr(13) & " Second Word"

Jatz_DA_WAY

Registered User.
Local time
Today, 06:02
Joined
Mar 22, 2006
Messages
19
Hi All,
I have a text box. I want to display "First Word" and "Second Word" in two separate lines. If I use Chr(13), it simply adds a small box between the two words.

Is there any way I can have them on two diff lines.

Thanks in advance,

Jatz
 
"FirstWord" & VbCrLF & "SecondWord" (that's using code, though)
 
Great!!! Thanks a lot!!!
 
I know bobs answer this but would
Chr(13) & Chr(10) & of worked ???
 
It might work Gary, but my preference is to go with the one easier to remember AND is about 10 characters less typing :D
 

Users who are viewing this thread

Back
Top Bottom