Floating and Position-controlled Dialog Box

Newbie Member
22Apr2007,22:46   #1
Coffee99's Avatar
I'm new to C# but I need to make a floating messagebox that I can position from the code. My code so far pops up the message box and waits for user input. But it does not float above other windows and it does not come up where I want it to. So far I have:

DialogResult dir = MessageBox.Show("Keep Going?", "Coninue" ,MessageBoxButtons.YesNoCancel);
if (dir == DialogResult.No)
{
Console.WriteLine(" We are NOT done " ) ;
}


Thanks for your help.
Go4Expert Founder
23Apr2007,04:56   #2
shabbir's Avatar
You need to specify the parent window to the MessageBox to make it above the current window.

Something like
Code:
MessageBox.Show (IWin32Window, String, String, MessageBoxButtons)
Displays a message box in front of the specified object identified by IWin32Window and rest of the params are same as used by you.
Newbie Member
23Apr2007,06:46   #3
Coffee99's Avatar
The field "IWin32Window" is unknown to compiler. Do I need ot incldue another "using " ?
Go4Expert Founder
23Apr2007,07:57   #4
shabbir's Avatar
What do you mean by unknown to compiler.
Newbie Member
24Apr2007,03:22   #5
Coffee99's Avatar
I get error:

System.Windows.Forms.IWin32Window is a 'type' but used like a variable

Not sure what to do.

gary
Go4Expert Founder
24Apr2007,08:59   #6
shabbir's Avatar
That is the type of parameter and you need to pass the this pointer provided you are calling the function in the Window class (Form or something similar)