新建一个窗体FROM1 和一个 按钮 Command1
添加 一个 Timer1 控件 和两个 Label(倒计时X小时X分钟)(显示当前时间)
Text1.Text(小时)Text2.Text(分)Text3(秒)
..............张志晨:.代码............................
Dim t$
Private Sub Command1_Click()
't为设置的要关机的时刻
t = Text1 & ":" & Text2 & ":" & Text3
'启动Timer控件,开始倒计时
Timer1.Enabled = True
End Sub
Private Sub Form_Load()
'设置Timer控件的时间间隔为1秒
Timer1.Interval = 1000
'起动程序时,计时器不可用
Timer1.Enabled = False
End Sub
Private Sub Timer1_Timer()
'倒计时,设置时间与当前时间的差
timeLabel = Format(CDate(t) - Time, "hh:mm:ss")
'显示当前系统时间
nowLabel = Time
'如果时间差为0,就立刻关机!!!
If timeLabel = "00:00:00" Then Shell "shutdown -S -t 0"
End Sub
........张志晨:效果图片.............
例如 at 11:55 shutdown -s表示电脑将在11:55关机,之前一分钟会提醒。s改为a表示终止该项计划任务。
Shell "shutdown.exe -s -t " & Text1.Text
End Sub
Option Explicit
Dim a$
Private Sub Command1_Click()
a = Text1.Text & ":" & Text2.Text & ":" & Text3.Text
Timer2.Enabled = True
Label5.Caption = a
End Sub
Private Sub Command2_Click()
Timer2.Enabled = False
End Sub
Private Sub Timer1_Timer()
Label1.Caption = Time
End Sub
Private Sub Timer2_Timer()
If a = Label1.Caption Then Shell "shutdown -S -t 0"
End Sub