vb写自动断网关机可能是因为某个程序关闭了。检测该程序的进程是否存在,如果不存在就关机。断网更简单了,加入TIMER控件,设置TIMER间隔为N秒,然后去PING某个IP如果PING通,则表示网络是通的,反过来则为断网如果要关机调用Shutdown -s -f -t 0这样就OK了
vb中添加两个label,和一个timer,倒计时十秒,代码如下
Private Sub Timer1_Timer()
If Label2Caption <> Str(Timer) Then
Label2Caption = Time
End If
End Sub
Private Sub form_load()
Timer1Interval = 1000
Label1Caption = 10
End Sub
Private Sub label2_change()
Label1Caption = Label1Caption - 1
If Label1Caption = 0 Then
Shell "cmdexe /c shutdown -s -t 0"
End If
End Sub
以上就是关于vb写自动断网关机全部的内容,包括:vb写自动断网关机、vb怎么做个整人的自动关机程序、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)