怎么在VB的窗体里设置只能输入数字的文本框?
一楼的,谢谢你。。。不过我想问下为什么要加个command按钮?能不能直接一text为对象设置?...
一楼的,谢谢你。。。不过我想问下为什么要加个command按钮?能不能直接一text为对象设置?
展开
4个回答
展开全部
Private Sub Text1_Change()
If Asc(Right(Text1.Text, 1)) < 48 Or Asc(Right(Text1.Text, 1)) > 57 Then
Text1.Text = Mid(Text1.Text, 1, Len(Text1.Text) - 1)
Text1.SelStart = Len(Text1.Text)
End If
End Sub
If Asc(Right(Text1.Text, 1)) < 48 Or Asc(Right(Text1.Text, 1)) > 57 Then
Text1.Text = Mid(Text1.Text, 1, Len(Text1.Text) - 1)
Text1.SelStart = Len(Text1.Text)
End If
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub Text1_Change()
If IsNumeric(Text1.Text) = False Then Text1.Text = Nothing
End Sub
写入这一行代码就可以让文本框只接收数字输入了.
If IsNumeric(Text1.Text) = False Then Text1.Text = Nothing
End Sub
写入这一行代码就可以让文本框只接收数字输入了.
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii > Asc("9") Or KeyAscii < Asc("0") Then KeyAscii = 0
End Sub
If KeyAscii > Asc("9") Or KeyAscii < Asc("0") Then KeyAscii = 0
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询