编写VB程序,可以实现定时关机 50

 我来答
百度网友79d5913
2016-11-14 · TA获得超过2245个赞
知道大有可为答主
回答量:1325
采纳率:83%
帮助的人:276万
展开全部
  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

提交
取消

辅 助

模 式