寻问一套系统倒计时关机的小程序
发布网友
发布时间:2023-11-22 17:43
我来回答
共2个回答
热心网友
时间:2023-12-05 03:46
VB中建一个文本框(用来输入一个数),一个按钮,一个计时控件
Private Sub Command1_Click()
Timer1.Interval = 1000
End Sub
Private Sub Timer1_Timer()
Text1.Text = Val(Text1.Text) - 1
If Text1.Text = 0 Then
shell “shutdown -s -t 1”
Unload Me
End If
End Sub
热心网友
时间:2023-12-05 03:46
把代码改一下就好了啊,既然能找到代码,你也可以学一下嘛