Word Wrapping in a Dialog Box?

  • Thread starter Thread starter MJV
  • Start date Start date
M

MJV

Is there a way to wordwrap the text in the dialog box?
I tried to use a hard enter (Shift+Enter) but no go! Is
there a way?
 
-----Original Message-----
Is there a way to wordwrap the text in the dialog box?
I tried to use a hard enter (Shift+Enter) but no go! Is
there a way?
.
MJV,

Try CTRL 'Enter' instead.

John Parkinson
 
-----Original Message-----
Is there a way to wordwrap the text in the dialog box?
I tried to use a hard enter (Shift+Enter) but no go! Is
there a way?
.
MJV

Sorry if I misunderstood your question, I was referring to
a text box.

JP
 
MJV said:
Is there a way to wordwrap the text in the dialog box?
I tried to use a hard enter (Shift+Enter) but no go! Is
there a way?

What is it you're calling a "dialog box"?

If you mean a MessageBox then use...

MsgBox "line 1" & vbCrLf & "line2"
 
MsgBox "First Line Of Text" & VbCrLf & "Second Line Of Text"

FYI - Also try two VbCrLf and see what happens!
 
Back
Top