编写VB程序,可以实现定时关机 50
1个回答
展开全部
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
【返回值】 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
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询