MsgBox(newbie)

M

Murtaza

the msgbox hides behind other forms . and doesnt show up in the front. can
anyone help?
 
B

BruceM

What is the code that is intended to cause the message box to appear, and in
what event is the code located?
 
P

Pat Hartman \(MVP\)

Sounds like the form from which you are calling the msgbox() is a dialog
form. That forces it to always stay on top and that is the problem you are
seeing. If you need to use msgboxes, you will need to change the properties
of the calling form to allow them to pop up.
 
Top