Click here to Skip to main content
15,861,168 members
Articles / Desktop Programming / Windows Forms
Tip/Trick

Position a Windows Forms MessageBox in C#

Rate me:
Please Sign up or sign in to vote.
4.96/5 (18 votes)
6 Apr 2013CPOL 62.3K   31   5
A tip about how to set the position of a Windows Forms MessageBox in C#

Introduction

There's no method in C# to position a MessageBox. But in C++, you can position a message box by finding the message box and moving it. In this tip, I'll tell you how to position a MessageBox in C#.

Using the Code

At the top of your code file, add these using namespace statements:

C#
using System.Runtime.InteropServices;
using System.Threading;

In your Form class, add these DllImport attributes:

C#
[DllImport("user32.dll")]
static extern IntPtr FindWindow(IntPtr classname, string title); // extern method: FindWindow

[DllImport("user32.dll")]
static extern void MoveWindow(IntPtr hwnd, int X, int Y, 
	int nWidth, int nHeight, bool rePaint); // extern method: MoveWindow

[DllImport("user32.dll")]
static extern bool GetWindowRect
	(IntPtr hwnd, out Rectangle rect); // extern method: GetWindowRect

The DllImportAttribute class is available in each .NET version.
Then, you need to find and move the MessageBox. To do that, use this code:  

C#
void FindAndMoveMsgBox(int x, int y, bool repaint, string title)
{
    Thread thr = new Thread(() => // create a new thread
    {
        IntPtr msgBox = IntPtr.Zero;
        // while there's no MessageBox, FindWindow returns IntPtr.Zero
        while ((msgBox = FindWindow(IntPtr.Zero, title)) == IntPtr.Zero) ;
        // after the while loop, msgBox is the handle of your MessageBox
        Rectangle r = new Rectangle();
        GetWindowRect(msgBox, out r); // Gets the rectangle of the message box
        MoveWindow(msgBox /* handle of the message box */, x , y, 
           r.Width - r.X /* width of originally message box */, 
           r.Height - r.Y /* height of originally message box */, 
           repaint /* if true, the message box repaints */);
    });
    thr.Start(); // starts the thread
}

Call this method before you call MessageBox.Show. When you call MessageBox.Show, be sure the caption parameter isn't empty, because the title parameter must be equal to the caption parameter.

For example:

C#
FindAndMoveMsgBox(0, 0, true,"Title");
MessageBox.Show("Message","Title");

License

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


Written By
Student
Europe Europe
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
npdev137-Apr-13 21:19
npdev137-Apr-13 21:19 
GeneralMy vote of 5 Pin
Gun Gun Febrianza24-Oct-12 5:37
Gun Gun Febrianza24-Oct-12 5:37 
GeneralMy vote of 5 Pin
DrABELL9-Oct-12 7:30
DrABELL9-Oct-12 7:30 
GeneralMy vote of 5 Pin
hoernchenmeister9-Oct-12 5:16
hoernchenmeister9-Oct-12 5:16 
GeneralMy vote of 5 Pin
Carsten V2.08-Oct-12 18:36
Carsten V2.08-Oct-12 18:36 

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.