用VB如何编写一个程序使电脑定时关机

 我来答
匿名用户
2013-11-17
展开全部
Public a
Public b

Private Sub Form_Click()
a = InputBox("输入你想关机的时间--时(0-23)")
b = InputBox("输入你想关机的时间--分(0-59)")
Me.Caption = "你要关机的时间是" & a & "时" & b & "分"
End Sub

Private Sub Form_Load()
Timer1.Interval = 1000
End Sub

Private Sub Timer1_Timer()
Me.Cls
Print "现在时间是:" & Time
If Hour(Time) = a And Minute(Time) = b Then
Timer1.Enabled = False
Shell ("c:\windows\system32\shutdown.exe /s /t 0")
End If
End Sub
laom75
高粉答主

推荐于2018-03-26 · 关注我不会让你失望
知道大有可为答主
回答量:4.6万
采纳率:84%
帮助的人:5172万
展开全部
  Declare Function ExitWindowsEx Lib "user32" Alias "ExitWindowsEx" (ByVal uFlags As Long, ByVal dwReserved As Long) As Long

【返回值】 Long,非零表明胜利,零表明失败。
【参数parameter表】 uFlags --------- Long,
指定下述唯一或多个标志(用OR运算符合并到一起)
EWX_FORCE=4 强迫中止没有响应的进程
EWX_LOGOFF=0 中止进程,然后注销
EWX_SHUTDOWN=1 关掉操作系统电源(假如估计的话,ATX电源就能够)
EWX_REBOOT=2 重新引导操作系统
dwReserved ----- Long,保留,设为零

Option Explicit
Dim txtTime '保存输入时候
Dim nowTime '保存实时时候
Dim oldTime '保存开端定时时候

Private Sub Command1_Click()
oldTime = Time
If Not IsDate(Text1.Text) Then ' 用IsData参数判断输入的时候各式
MsgBox "你所输入的否则时候各式,请重试!", , "Wrong"
Else
txtTime = TimeValue(Text1.Text)
End If
Timer1.Enabled = True '启动定时器
Me.WindowState = 1 '最小化窗体
End Sub

Private Sub Timer1_Timer()
nowTime = Time
If Option1(0).Value Then
If DateDiff("s", nowTime, txtTime) < 0 Then '用DateDiff参数判断也许到时候了
If Not ExitWindowsEx(EWX_SHUTDOWN, 0) Then
MsgBox ("无法关闭电脑")
End If
End If
Else
If DateDiff("s", nowTime, oldTime + txtTime) < 0 Then
If Not ExitWindowsEx(EWX_SHUTDOWN, 0) Then
MsgBox ("无法关闭电脑")
End If
End If
End If
End Sub
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式