-
MsgBox's....
I was wondering, i'm making a custom i-face, and I want everything to go even the pop-up msg's. Well for the pop-up msgs im using another form, but when it shows how do I make it so you cannot click on anything else tell you close it (like a msgbox)?
Thanks.
-
On the parent form (form callingthe "Msgbox")
Msgbox.Show Vbmodal
that'll make it so it has to close before you can do anything
-
<?>
With message boxes you have the ability of system modal which means nothing happens till you answer the message
with a form you have only modal which means nothing in your application happens but other windows still retain control meaning you can switch between apps. etc.