Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
how do I send Chr$(10) to a msgbox so I can have a
sentence in a msgbox on it's own line? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
one way (that works cross-platform):
MsgBox "Sentence 1." & vbNewLine & "Sentence 2." In article , "joe user" wrote: how do I send Chr$(10) to a msgbox so I can have a sentence in a msgbox on it's own line? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
or for just Chr$(10)
MsgBox "This is line 1" & vbLf & _ "This is line 2" or MsgBox "This is line 1" & chr$(10) & _ "This is line 2" -- Regards, Tom Ogilvy "joe user" wrote in message ... how do I send Chr$(10) to a msgbox so I can have a sentence in a msgbox on it's own line? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|