Inputbox or msgbox critical + Cancel

  • Thread starter Thread starter Syrus the Virus
  • Start date Start date
S

Syrus the Virus

1.
I need to have a inputbox with the critical layout (if possible)

2.
I need to make a msgbox with critical layout (standard equiped with
ok button) AND a cancel button

Help!!!! Please!!!
 
Hi
1) AFAIK this is not possible

2) Try
msgbox ("Test",vbExclamation+vbOKCancel)
 
Hi Syrus,
I need to have a inputbox with the critical layout (if possible)

Not possible.
2.
I need to make a msgbox with critical layout (standard equiped with a
ok button) AND a cancel button

MsgBox "Your Prompt", vbCritical + vbOKCancel, "TitleOfBox"

Regards,

Jan Karel Pieterse
Excel MVP
www.jkp-ads.com
 
Back
Top