Click here to Skip to main content
15,867,835 members
Articles / Desktop Programming / Windows Forms
Article

MessageBoxManager - A Windows Forms component that provides enhanced MessageBox functionality

Rate me:
Please Sign up or sign in to vote.
4.92/5 (55 votes)
19 Feb 2006Ms-PL4 min read 257.3K   7.7K   171   43
MessageBoxManager is a Windows Forms component that you can drag & drop into a Windows Forms project's main form, and it gives you enhanced message box functionality without forcing you to change your existing calls to any of the MessageBox.Show() overloads

Image 1

Image 2

Introduction

MessageBoxManager is a Windows Forms component that you can drag & drop into a Windows Forms project's main form, and it gives you enhanced message box functionality without forcing you to change your existing calls to any of the MessageBox.Show() overloads. It supports various features such as an auto-closing message-box, such as the one shown in the animated GIF below. Note how the OK button is disabled during the count down, and gets enabled at the end of it. You can also see a Show this dialog again check box that has been added to the message-box. Once again, note you don't have to change your existing code that uses MessageBox.Show, or even code that P/Invokes the MessageBox or

C#
MessageBoxIndirect
API function calls.

Image 3

Other features include the ability to force a custom icon (over a default one), and this can be seen in the screenshots on top of this page, as well as the ability to set a custom font. When you set a custom font, the message-box and its child controls are expanded to adjust to the increase in font size. Note that, if you use injudicious font-sizes, you'll get unexpected results. The stretch algorithm assumes that the custom font size is within a reasonable range of values. Here's a screenshot that shows a custom font in action.

Image 4

Using the class

Image 5

Using the class is pretty straightforward as shown in the screenshot above. Just add the component to your toolbox, and drag & drop it into your main form. Only one instance of component should be used per application per thread. If you have a secondary thread that owns UI (such as a form for instance), that thread will need to have a separate instance of the MessageBoxManager component, and when the instance in the secondary thread is active, that in the primary thread *must be* temporarily disabled. Attempting to use multiple active MessageBoxManager objects from multiple threads or even from one thread will result in unexpected behavior and possibly affect program execution. The component consists entirely of properties (there are no instance methods outside of the compiler generated default constructor), and each of these properties can be directly set using the VS 2005 properties window (as in the above screenshot). The next section will quickly cover the functionality provided by each of these properties.

Class Reference

Image 6

  • bool HookEnabled : Enables and disables the extended message box functionality. If this is false, your message-boxes will function as normal.

  • int TimeOut : This specifies the time-out in seconds that is used by the auto-close, button-disable, and title-countdown features.

  • bool AutoClose : Set this to true to close the message-box automatically after the number of seconds specified by the TimeOut property has elapsed.

  • DialogResult AutoCloseResult : When the AutoClose property is set, you can specify a DialogResult via this property that will be seen by the calling code (that invoked the message-box).

  • bool ShowTitleCountDown : If set to true, the title will show a count down and at the end of it, the original text will be restored.

  • bool DisableButtons : If set to

    C#
    true
    
    , during the count down (if any), all buttons except the Cancel button (if it's present) are disabled. Buttons are re-enabled when the count down has finished.

  • bool DisableCancel : If set to

    C#
    true
    
    , the Cancel button (if present) will be disabled if the
    C#
    DisableButtons
    
    property is also true. This property has no effect if the
    C#
    DisableButtons
    
    property is false.

  • bool CenterWindow : If true, the message-box is centered on its parent.

  • bool ShowNextTimeCheck : If this is set to true, a check box will be shown that prompts the user whether the dialog should be shown the next time. The message-box is resized to fit in this check box. The status of the check box is retrieved using the LastCheckState property.

  • bool LastCheckState : This returns the check state of the last message-box that was shown with a show-again check box. If you change the ShowNextTimeCheck to false, be aware that this property will continue will hold whatever value it had previously.

  • Font TextFont : You can set a custom font for the message-box and its controls, including the buttons. Use this feature with some basic sense of sagacity. The message-box is expanded to accomodate for the change in font-size (if any).

  • Icon CustomIcon : Set this to

    C#
    true
    
    to forcibly replace the message-box icon (if there's one present) with a custom icon. Note that all icons are blindly replaced if this property is true. This is handy if you want to show your product icon on all message-boxes shown from your application.

History

  • Feb 18 2006 - First version

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
United States United States
Nish Nishant is a technology enthusiast from Columbus, Ohio. He has over 20 years of software industry experience in various roles including Chief Technology Officer, Senior Solution Architect, Lead Software Architect, Principal Software Engineer, and Engineering/Architecture Team Leader. Nish is a 14-time recipient of the Microsoft Visual C++ MVP Award.

Nish authored C++/CLI in Action for Manning Publications in 2005, and co-authored Extending MFC Applications with the .NET Framework for Addison Wesley in 2003. In addition, he has over 140 published technology articles on CodeProject.com and another 250+ blog articles on his WordPress blog. Nish is experienced in technology leadership, solution architecture, software architecture, cloud development (AWS and Azure), REST services, software engineering best practices, CI/CD, mentoring, and directing all stages of software development.

Nish's Technology Blog : voidnish.wordpress.com

Comments and Discussions

 
GeneralA great addition Pin
malharone20-Feb-06 8:31
malharone20-Feb-06 8:31 
GeneralRe: A great addition Pin
Nish Nishant21-Feb-06 5:00
sitebuilderNish Nishant21-Feb-06 5:00 
GeneralNice! Pin
Marc Clifton20-Feb-06 2:20
mvaMarc Clifton20-Feb-06 2:20 
GeneralRe: Nice! Pin
Nish Nishant21-Feb-06 5:00
sitebuilderNish Nishant21-Feb-06 5:00 
GeneralVery nice! Pin
Bravid19-Feb-06 22:26
Bravid19-Feb-06 22:26 
GeneralRe: Very nice! Pin
Nish Nishant20-Feb-06 1:22
sitebuilderNish Nishant20-Feb-06 1:22 
GeneralAweSome() Pin
BinsNZ19-Feb-06 20:38
BinsNZ19-Feb-06 20:38 
GeneralRe: AweSome() Pin
Nish Nishant20-Feb-06 1:22
sitebuilderNish Nishant20-Feb-06 1:22 
BinsNZ wrote:
Hi Nish

Excellent Work! You did GREAT JOB!


Thanks for providing such a wonderful control
Binoy


Thanks Smile | :)

Regards,
Nish
Nish’s thoughts on MFC, C++/CLI and .NET (my blog)
The Ultimate Grid - The #1 MFC grid out there!

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.