标题:我想编写一个延时减数的程序!但是只能运行一次!求解答
取消只看楼主
pkby007
Rank: 1
等 级:新手上路
帖 子:7
专家分:0
注 册:2010-11-23
结帖率:0
已结贴  问题点数:0 回复次数:0 
我想编写一个延时减数的程序!但是只能运行一次!求解答
下面的就是我写的内容,但是我运行只能执行一次。我想任意数值减到0求解答

Private Sub Form_Load()
Timer1.Interval = 2000
Timer1.Enabled = False
End Sub
Private Sub text1_keydown(keycode As Integer, shift As Integer)
If keycode = 13 Then Timer1.Enabled = True
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii <> 8 And KeyAscii < Asc(0) Or KeyAscii > Asc(9) Then KeyAscii = 0
'KeyAscii跟Del左右上下等无关,跟中文和特殊符号也有关。
End Sub
Private Sub Timer1_Timer()
If Val(Text1.Text) = 0 Then
Timer1.Enabled = False
Else
Text2.Text = Val(Text1.Text) - 1
End If
End Sub



[ 本帖最后由 pkby007 于 2011-7-5 22:01 编辑 ]
搜索更多相关主题的帖子: 特殊符号 中文 
2011-07-05 21:37



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-344805-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.233334 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved