VB中Timer1.Enabled=False是什么意思?

来源:百度知道 编辑:UC知道 时间:2024/06/25 02:46:21

使名为timer1的定时器控件停止工作.

Timer1 是一个时间控件 的名字
Timer1.Enabled=False 作用是使 Timer1 禁用

禁用Timer1

private sub timer1_timer()
.......... 'code there will not execute
end sub