Click here to Skip to main content
Click here to Skip to main content

MessageBox with a timeout for .NET

By , 12 Aug 2004
 

Introduction

Have you ever wanted a message box that times out? Well here you go.

Using the code

  1. Add MessageBoxEx.cs to your project or assembly your project references.
  2. Change MessageBox.Show(...); calls to MessageBoxEx.Show(..., timeout);.
  3. That's it!

Notes

  1. MessageBoxEx has all 12 of the MessageBox.Show overloads.
  2. The timeout is expressed in milliseconds.
  3. MessageBoxEx does not support reentrancy. Good thing too. Why would you want to have more than one message box at the same time?
  4. If the user doesn't press a button before the timeout elapses the function will return the DialogResult of the messagebox dialogs default button.

How does it work?

Just before calling MessageBox.Show(...), SetWindowsHookEx(WH_CALLWNDPROCRET, ...) is called. The hook proc looks for a WM_INITDIALOG on a window with text equal to the message box caption. A windows timer is started on that window with the appropriate timeout. When the timeout fires EndDialog is called with the result set to the dialog default button ID. You can get that ID by sending a dialog box a DM_GETDEFID message. Pretty simple.

References

KB318804: HOW TO: Set a Windows Hook in Visual C#.NET

Acknowledgements

GipsySoft: http://www.gipsysoft.com/messagebox. You'll find a C++ implementation with many more features.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

RodgerB
Software Developer (Senior) Bloomberg
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionGracias CApo!memberovamendocino23 Feb '13 - 5:37 
QuestionThanksmembervasanthkumarmk17 Aug '12 - 2:40 
Questionit does not work when we use servicenotification message box (please suggest something)memberhsubhashis4 Jun '12 - 23:20 
AnswerRe: it does not work when we use servicenotification message box (please suggest something)memberRodgerB4 Jun '12 - 23:34 
It can't find the message box window. Try using the real API. MessageBoxTimeout API[^]
GeneralWowmemberWabiSabi16 Oct '11 - 4:52 
GeneralConverted to C++/CLImemberSharjith1 Sep '11 - 9:07 
GeneralRe: Converted to C++/CLImemberRodgerB1 Sep '11 - 9:28 
GeneralThank you!memberChrisKane15 May '11 - 22:19 
GeneralMy vote of 5membermatrixology4 May '11 - 5:06 
GeneralIts not working with DefaultDesktopOnly/ ServiceNotification optionmemberkirangiri4 Jan '11 - 7:26 
GeneralIts not working with DefaultDesktopOnly/ ServiceNotification optionmemberkirangiri4 Jan '11 - 7:26 
GeneralMy vote of 5memberFrancesco Pasquesi1 Dec '10 - 3:10 
GeneralSome enhancementsmemberDanielLey25 Sep '10 - 6:59 
GeneralMy vote of 5memberTomChantler22 Sep '10 - 4:59 
GeneralThis isn't working in win7, Visual Studio 2008memberMr C P9 Mar '10 - 23:10 
GeneralRe: This isn't working in win7, Visual Studio 2008memberMr C P9 Mar '10 - 23:15 
GeneralRe: This isn't working in win7, Visual Studio 2008memberTomChantler22 Sep '10 - 5:00 
Generalgood articlememberDonsw17 Jan '09 - 17:51 
GeneralVery very very good code, but...memberseb.4924 Apr '08 - 5:20 
QuestionDoes this support multi threading callsmemberKanna22 Mar '08 - 5:23 
GeneralRe: Does this support multi threading callsmemberRodgerB31 Mar '08 - 13:00 
GeneralPocketPCmemberrichardjjs14 Apr '07 - 21:56 
GeneralRe: PocketPC [modified]memberRodgerB15 Apr '07 - 4:50 
GeneralAmazingmemberazam's13 Feb '07 - 18:21 
GeneralRe: AmazingmemberAndreas Hollmann2 May '07 - 0:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 13 Aug 2004
Article Copyright 2004 by RodgerB
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid