Thread: MsgBox()
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
papou[_4_] papou[_4_] is offline
external usenet poster
 
Posts: 110
Default MsgBox()

Hello Mike
Very simply with:
MsgBox "This is my personnal critical message", vbCritical + vbOKCancel,
"Warning!"

HTH
Cordially
Pascal

"Mike H." a écrit dans le message de news:
...
I want to display a message box with an icon, Buttons:=vbCritical, but I
also
want to have the user have more than just the OK button to click, like
vbOkCancel. How can I do both?