Thread: msgbox
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Mike Mike is offline
external usenet poster
 
Posts: 3,101
Default msgbox

Sub msgboxtwolines()
MsgBox "First line" _
& vbCrLf & "Second line"
End Sub

"peyman" wrote:

hi,
how can I have two lines in MsgBox results in VB?
thanks in advance