Thread: msgbox
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
peyman peyman is offline
external usenet poster
 
Posts: 189
Default msgbox

thank you Mike.it's perfect!

"Mike" wrote:

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