VB如何使用timer控件?
我设定120分钟后运行一个动作,让家里的电脑自动关机,而timer最多Intervel只有60000属性,到不了30分钟.
那我怎么写程序呢?
Private Sub Timer1_Timer()
shell "c:\shutdown.exe"
End Sub
参考答案:设置一个静态变量如:将Timer1的Intervel设置为1000
Private Sub Timer1_Timer()
static t as long
if t>120*60 then
shell "c:\shutdown.exe"
timer1.enabled=false
else
t=t+1
end if
End Sub