Help me please to create a messagebox which stays always on top, and user can't use other windows functions like calling start menu or interacting with other windows until he presses the OK button on messagebox.
相关问题
- How to programmatically convert Access 1997 .mdb t
- VBScript / ADODB Syntax Issue with adArray?
- How to check default host for VBScript is WScript
- vbscript is not working on IE10 browser mode
- Using asp objects in .NET - Max compatibility
相关文章
- Can a VBScript function return a dictionary?
- UTC Time Assignment in VBScript
- Copy and Rename File VBScript
- How do I open a file with VBScript?
- Import WinAPI Function in *.VBS File
- How to reference the mail which triggered the outl
- Classic ASP/VBScript implementation of Crockford
- Convert .csv file into Excel in VBScript
The second parameter of the
MsgBox
function allows you to specify options for the dialog.For more information, see my article Mastering the Message Box.
MsgBox "Hello, World!", +vbSystemModal
Make sure to add the "+" before vbSystemModal