HELP! - MessageBox in FullScreen app

J

jorge

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!
 
P

Pete Davis

If you're doing:

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

Use:

MessageBox.Show(myFullScreenForm, "My message")

Pete
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top