View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default msgbox (2 questions)

Sub AAAA()
res = MsgBox( _
prompt:="Make a selection" & _
vbNewLine & "from the buttons", _
Buttons:=vbYesNo + vbCritical, _
Title:="Critical Alert")
End Sub
Sub AAAA()
res = MsgBox( _
prompt:="Make a selection" & _
vbNewLine & "from the buttons", _
Buttons:=vbYesNo + vbCritical, _
Title:="Critical Alert")
End Sub

--
Regards,
Tom Ogilvy

"Yan Robidoux " wrote in
message ...
first question :

how can i change parameter of message box as :
- change the title of the box...
- change the box layout to have the warning symbol into it (red circle
?)


second question :

how can i put a line break in a message... I want to have multiple line
but i dont remember how to do it...

thanks in advance for the answers...


---
Message posted from http://www.ExcelForum.com/