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
|