While my macro runs, I do my other works. But then when msgbox pops out stays behind my other windows.
How can I see it on top, when it pops out?
Thank you.
While my macro runs, I do my other works. But then when msgbox pops out stays behind my other windows.
How can I see it on top, when it pops out?
Thank you.
add system modal parameter vbSystemModal
:
MsgBox "Your message!", vbSystemModal
Add an exclamation mark to the message:
MsgBox "Your message!",6 +vbSystemModal, "Title of Msg..."