本文介绍了在VB.NET中按一个按钮的时间/超时的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 你可以帮助我吗,我只用一个按钮在vb.net中制作一个时间/时间。那个按钮控制了所有 即时通讯我想它会是这样的 i在vb.net上什么都不知道 我尝试了什么: 私人 Sub Button1_Click ( ByVal sender As System。 Object , ByVal e As System.EventArgs)句柄 Button1.Click ' timer1.start() ' label1将显示时间 ' label1.text = DateTime.Now.ToString(hh:mm:ss tt) ' 当计时器当前处于活动状态并单击按钮 ' label1现在将显示超时 ' label1.text = DateTime.Now.ToString(hh:mm:ss tt) 结束 Sub 解决方案 could you guys help me, im making a timein/time out in vb.net using just a one button. that button control it all im thinking it will be like this i dont know anything in vb.netWhat I have tried:Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 'timer1.start() 'label1 will show the time in 'label1.text = DateTime.Now.ToString("hh:mm:ss tt") 'while the timer is currently active and clicked the button 'the label1 will now display the time out 'label1.text = DateTime.Now.ToString("hh:mm:ss tt") End Sub 解决方案 这篇关于在VB.NET中按一个按钮的时间/超时的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-18 21:13