Click here to Skip to main content
15,891,863 members
Articles / Programming Languages / C#

TopMost MessageBox

Rate me:
Please Sign up or sign in to vote.
4.54/5 (33 votes)
1 May 20072 min read 189.8K   1.9K   41  
A simple wrapper class to ensure MessageBox messages are visible.
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;

namespace TopMostMessageBox
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Displaying message box");
            TopMostMessageBox.Show("No title");
            TopMostMessageBox.Show("This will appear in a message box that is a topmost window", "Title", MessageBoxButtons.AbortRetryIgnore);
            Console.WriteLine("Back from message box");
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for 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


Written By
Web Developer
United States United States
I have been developing .NET applications since 2001 and have been working in software development since 1989.

Comments and Discussions