gpt4 book ai didi

vbscript - 有没有办法让 MessageBox 在设定的时间间隔后自动关闭?

转载 作者:行者123 更新时间:2023-12-02 09:11:03 25 4
gpt4 key购买 nike

我有一个 VBScript 来通过 MessageBox 对事件发出警报,但我希望它在 5 秒左右后自动关闭。有没有办法实现这个目标?

最佳答案

使用 WshShell 对象的 Popup 方法。它有一个超时参数。

intTimeout = 10      'Number of seconds to wait
strMessage = "This is my message box!"
strTitle = "Hello, world!"

Set WshShell = CreateObject("WScript.Shell")
intResult = WshShell.Popup(strMessage, intTimeout, strTitle)

更多信息,请查看我的文章 Mastering the MessageBox ASP 免费。 ( archive )

关于vbscript - 有没有办法让 MessageBox 在设定的时间间隔后自动关闭?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10252237/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com