VbYesNo - Default NO

lapacotee

New Member
Joined
Dec 10, 2004
Messages
49
Is it possible to set the focus of a vbYesNo MsgBox to NO? If so, how?

Thank you,
Tee
Lapaco
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Try something like this:

Code:
Sub test()
Dim x
x = MsgBox("Test", vbYesNo + vbDefaultButton2)
End Sub
 
Upvote 1
try something like this...the 260 says it's a vbYesNo and No is default...see vba help file on "MsgBox Function"

Code:
Sub tstmsgb()
test = MsgBox("test", 260)
End Sub


EDIT****just found out the easier way...Hotpepper beat me to it...i knew i had it in one of my files couldn't find it initially....I would personally use Hotpeppers approach

Note if you want to include the type of msgbox too
msgbox("test", vbYesNo+vbExclamation+vbDefaultButton2)
 
Upvote 0

Forum statistics

Threads
1,221,974
Messages
6,163,204
Members
451,817
Latest member
Jorge24

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top