In forms application, is there any Alternative to MsgBox?

Posted by GuruC on Stack Overflow See other posts from Stack Overflow or by GuruC
Published on 2011-01-08T06:29:36Z Indexed on 2011/01/08 8:54 UTC
Read the original article Hit count: 174

I like how MsgBox stops all further processing until it's clicked but I don't like how it pops that little msgbox in the middle of the screen, which I then have bring to the front if there is a window covering it.

Is there a way to do something like a msgbox but keep it on my Form (which is always in view) so I can go ahead and click a button on the form instead of having to bring the little msgbox window on top of windows that may be covering it.

I use the msgbox to inform me that a certain situation has happened, which I manually fix and when I'm done I click the MsgBox to continue processing. It'd be nice to have this button right on the form.

© Stack Overflow or respective owner

Related posts about winforms

Related posts about visual-c++