Create a vbscript message that sits on top and blocks other windows.

Help me create a mailbox that always remains at the top, and the user cannot use other Windows functions, such as the call launch menu or interaction with other windows, until he clicks the OK button in the message window.

+5
source share
2 answers

The second parameter of the function MsgBoxallows you to specify parameters for the dialog.

MsgBox "Hello, World!", vbSystemModal

For more information, see my article Mastering the Message Box .

+7
source

MsgBox "Hello, World!", + VbSystemModal

Be sure to add a "+" before vbSystemModal

-2
source

All Articles