HELP! - MessageBox in FullScreen app

  • Thread starter Thread starter jorge
  • Start date Start date
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!
 
If you're doing:

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

Use:

MessageBox.Show(myFullScreenForm, "My message")

Pete
 
Back
Top