Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请帮助我创建一个始终位于顶部的消息框,并且用户不能使用其他窗口功能,例如调用开始菜单或与其他窗口交互,直到他按下消息框上的确定按钮。
该MsgBox函数的第二个参数允许您指定对话框的选项。
MsgBox
MsgBox "Hello, World!", vbSystemModal
有关更多信息,请参阅我的文章掌握消息框。
MsgBox "Hello, World!", +vbSystemModal
确保在 vbSystemModal 之前添加“+”