Is it possible to show a messagebox within an application
running in full-screen mode? .Net does not seem to like
this concept at all, as it is impossible to bring the
messagebox to the front, even if I implement it as a form
in its own right.

Help!

Re: HELP! - MessageBox in FullScreen app by Pete

Pete
Mon Jan 24 11:56:28 CST 2005

If you're doing:

MessageBox.Show("My message") then that might be your problem.

Use:

MessageBox.Show(myFullScreenForm, "My message")

Pete

"jorge@calvino.net" <anonymous@discussions.microsoft.com> wrote in message
news:13a301c5021c$1ae2d3e0$a501280a@phx.gbl...
> Is it possible to show a messagebox within an application
> running in full-screen mode? .Net does not seem to like
> this concept at all, as it is impossible to bring the
> messagebox to the front, even if I implement it as a form
> in its own right.
>
> Help!