View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Harald Staff Harald Staff is offline
external usenet poster
 
Posts: 1,327
Default Msgbox text hard return

Hi Jo

Sub test()
MsgBox "blah blah" & Chr(10) & _
"yet another blah" & Chr(10) & Chr(10) & _
"don't touch that dial"
End Sub

HTH. Best wishes Harald

"Jo" skrev i melding
...
Hi
How do I set up my message box to say
blah, blah, blah
etc., etc.
rather than
blah, blah, blah etc., etc.
That is I want a line return between my txt rather than a
really long message box.
Thanks
Jo