vote up 0 vote down star

I have the following unmanaged C++ code:

MessageBox( NULL, strMessage, "Cool Product", MB_RETRYCANCEL | MB_ICONEXCLAMATION);

I want to disable the RETRY button for 10 seconds (for example), then enable it.

How can I do this?

flag

6 Answers

vote up 1 vote down check

Like @ffpf says, you need to make your own dialog to do this, using MFC, ATL, raw Win32, etc.

Then create a timer that would enable and disable the button.

link|flag
vote up 0 vote down

I agree with efotinis, it's not impossible, once you have the HWND you can do whatever you want with it. It is just a matter of "do you really need the hacks or are you better off with just creating your own message box dialog"?

Another not so nice way of finding the HWND (which would obviously give you access to eveything in the message box) would be to start a thread and ciclically poll for the message box handle by using EnumChildWindows. But I personally would prefer the WH_CBT hook also.

link|flag
vote up 1 vote down

You cannot directly manipulate the MessageBox controls, but you can use a hack. Install a WH_CBT hook just before displaying the dialog and handle the HCBT_ACTIVATE event. This will give you the HWND of the message box, so that you can do whatever you want with it (subclass it, manage its buttons and set a timer).

You can find a Custom MessageBox tutorial with demo code in James Brown's site.

link|flag
vote up 0 vote down

Since Vista you can use taskdialog -- a more sophisticated dialog than a simple message box. More info and links here.

link|flag
And even without Vista, a task dialog is a much better approach than a message box. There are some implementation that work on pre-Vista systems and it isn't that hard to implement either, if you don't need all features at once. – OregonGhost Oct 6 '08 at 20:47
It does not look like you could actually enable and disable the buttons, only (potentially) add and remove. – crashmstr Oct 6 '08 at 20:53
vote up 0 vote down

I don't believe this is possible with the standard message box call.

You would probably be better off writing your own message box that includes this functionality.

(Or, you could write a separate thread that continually watches the screen waiting for that message box to appear, disable the retry button, wait 10 seconds and reenable it. Not fun. Seriously, do it the other way.)

link|flag
vote up 0 vote down

With the standard MessageBox call, you can't. You'd need to implement your own MessageBox in order to do this.

link|flag

Your Answer

Get an OpenID
or

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