View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jim Thomlinson Jim Thomlinson is offline
external usenet poster
 
Posts: 5,939
Default msgbox - How to Create a New Line or 2

Take a look at this

Sub Test()
MsgBox "hello" & vbCrLf & "World" & vbTab & "Goodbye" & _
vbCrLf & vbTab & "For Now"
End Sub

--
HTH...

Jim Thomlinson


"Corey" wrote:

Is there a code syntax to go to the next line or so?
Currently i have been using the spacebar to space out tot he next line.

Regards

Corey