vote up 1 vote down star
1

In C++/MFC, what's the simplest way to show a message box with a "Don't show this again" option?

In my case, I just want a simple MB_OK message box (one OK button).

flag

77% accept rate

5 Answers

vote up 6 vote down check

Or just use the SHMessageBoxCheck() function.

link|flag
Learn something new every day! Too bad they warn you that the function might not be carried forward to new versions of Windows (no mention of Vista, for instance). – Mark Ransom Oct 21 at 21:08
@Mark This function can be easy reimplemented using TaskDialog API – Shay Erlichmen Oct 21 at 21:42
Yes, that's exactly what I wanted! – djeidot Oct 22 at 10:24
Warning: this works for me because I want a simple MB_OK message box. It can be more complicated if the message box has more than one button. The docs tell us not to confuse "Do not show this dialog box" with "Remember this answer". – djeidot Oct 22 at 10:43
vote up 2 vote down

Thanks for all the answers. I will add one more, although I ended up selecting @Stefan's answer for being the simplest way to do it.

Before I saw Stefan's answer, I was using XMessageBox. It had a lot of options that I didn't want, but it worked on all systems, it's worth checking. You can find XMessageBox on http://www.codeproject.com/KB/dialog/xmessagebox.aspx.

link|flag
vote up 1 vote down

BCGSoft has a message box with this option: http://www.bcgsoft.com/featuretour/tour255.htm

link|flag
vote up 4 vote down

If your on Vista and up you can use the new TaskDialog API.
Here is a sample usage with the "Don't show again" checkbox.

link|flag
That's great, I wonder if would work well on XP... – djeidot Oct 20 at 18:00
No, Vista and up. – Shay Erlichmen Oct 20 at 18:02
There seem to be a lot of options, though, I just want a simple checkbox... – djeidot Oct 20 at 18:03
vote up 5 vote down

Probably just subclass a CDialog with a label, button(s), and a check box in the window.

If the user checks the box, then save this information in a config file that's loaded each time the application's run. Then, before calling the DoModal() method, check to see whether the user opted out.

link|flag
You might also consider setting a flag in the registry (under HKEY_CURRENT_USER) to ignore the dialog for the current Windows user – John Sibly Oct 20 at 17:51
That would be the hard way, I guess. I was looking for something already built in the framework. – djeidot Oct 20 at 17:59
I know what to do with the option value after I retrieve it, I was thinking of using @John Sibly's suggestion. – djeidot Oct 20 at 17:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.