Click here to Skip to main content
Licence 
First Posted 22 Feb 2000
Views 48,450
Bookmarked 21 times

A Wrapper for MessageBoxIndirect

By | 22 Feb 2000 | Article
A class which encapsulates MessageBoxIndirect.
  • Download demo project - 16 Kb
  • Download source files - 2 Kb
  • Sample Image - messagebox.gif

    Introduction

    Sometimes you might wish you could use other icons in a message box apart from the ones Windows gives you, or you might want to have more control over how your message box, specify which language to use, etc. Well, there is a way to do all this using the little-known API call MessageBoxIndirect.

    Here is a class which encapsulates MessageBoxIndirect (actually, it inherits from the MESSAGEBOXPARAMS structure which you pass to MessageBoxIndirect). You can use it like an MFC CDialog, although there are no dependencies on MFC.


    Usage

    1. Declare a CMessageBox object.
    #include "MessageBox.h"
    ....
    
    CMessageBox box;
    

    or

    CMessageBox box(hWnd, "My Text", "My Caption", MB_OK);
    

    2. Initialize it (If you are just displaying a standard Message Box you can skip this step

    box.SetIcon(IDI_SOMEICON);
    box.SetLangID(MAKELANGID(LANG_CHINESE, SUBLANG_CHINESE_TRADITIONAL));
    

    3. Call DoModal.

    if(box.DoModal() == MB_OK)
    {
    	// Do something here
    }
    else
    {
    	// Do something else
    }
    


    That's it!

    License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    Peter Kenyon

    Web Developer

    New Zealand New Zealand

    Member



    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

     
    You must Sign In to use this message board. (secure sign-in)
     
    Search this forum  
     FAQ
        Noise  Layout  Per page   
      Refresh
    QuestionSetFont PinmemberHwewet3:39 23 Aug '11  
    GeneralBest way to handle help messages... PinsussJames R. Twine6:44 23 Feb '00  

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

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

    Permalink | Advertise | Privacy | Mobile
    Web01 | 2.5.120517.1 | Last Updated 23 Feb 2000
    Article Copyright 2000 by Peter Kenyon
    Everything else Copyright © CodeProject, 1999-2012
    Terms of Use
    Layout: fixed | fluid