欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

15分钟提醒一次,珍惜时间啊

程序员文章站 2022-03-21 11:31:13
15分钟提醒一次,珍惜时间啊保存为.vbs复制代码 代码如下:today=date() years=datepart("yyyy",today)-1981-1 days=d...
15分钟提醒一次,珍惜时间啊
保存为.vbs
复制代码 代码如下:

today=date()
years=datepart("yyyy",today)-1981-1
days=datepart("y",today)+25
if datepart("m",today)=12 then
 if datepart("d",today)>=9 then
 msgbox "ok"
 years=years+1
 days=datepart("d",date)-9
 end if
end if 
msgbox "at ^"& years & "c!"&days&"d^ space-time!",4096+64,"提示"
set wshshell=createobject("wscript.shell")
do
wscript.sleep 900000
getstr=msgbox("15分钟过去了!",4097,"......!")
if getstr=vbcancel then 
wshshell.popup "bye-bye!",2,"......!" 
wscript.quit
end if
loop