vb.net timer控件触发按钮的click事件
例子就是:有如下控件,Button1,Button2,Timer1,Textbox1.我单击button1,触发timer事件,每隔一秒在调用button2的click事...
例子就是:有如下控件,Button1,Button2,Timer1,Textbox1.
我单击button1,触发timer事件,每隔一秒在调用button2的click事件,button2 的代码如下:m=m+1
n = m.tostring
textbox1.text = n
其中m,n不能申明在button2中,应该声明在外部。button2的代码就是每单击一次textbox1.text加1.。现在我想直接用一个timer事件来,无需每次单击触发了。。 展开
我单击button1,触发timer事件,每隔一秒在调用button2的click事件,button2 的代码如下:m=m+1
n = m.tostring
textbox1.text = n
其中m,n不能申明在button2中,应该声明在外部。button2的代码就是每单击一次textbox1.text加1.。现在我想直接用一个timer事件来,无需每次单击触发了。。 展开
2个回答
展开全部
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
m = m + 1
n = m.tostring
TextBox1.Text = n
End Sub
m=m+1
n = m.tostring
textbox1.text = n
把这几句原来在button2 click事件里面的代码,直接写在 timer事件里面,把timer的Enabled属性设置为True, Interval属性设置为1000,就可以了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询