gpt4 book ai didi

vbscript - 超时消息框弹出

转载 作者:行者123 更新时间:2023-12-02 08:01:41 24 4
gpt4 key购买 nike

我有一个正在运行的小脚本(基本上会触发一个消息框来告诉人们他们的帐户密码即将过期)。

我希望它在 30 分钟后自行关闭,但无法获得正确的语法来执行此操作,有人可以帮忙吗?

下面是调用msgbox的部分

if (daysLeft < warningDays) and (daysLeft > -1) then

Msgbox "Your Password Expires in " & daysLeft & " day(s)" & " at " & whenPasswordExpires & chr(13) & chr(13) & "Please ensure that you change your password before" & chr(13) & "its expiry time to prevent any disruption of service.", 4144, "PASSWORD EXPIRATION WARNING!"

End if

--

加文。

最佳答案

WShell 对象的 Popup() 方法可能会在指定的秒数后超时。以下示例应在 30 分钟后消失。

CreateObject("WScript.Shell").Popup "Hello!", 1800, "Title"

关于vbscript - 超时消息框弹出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23365470/

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