VB组合框 如何只输入数字?
请问,我要做一个简单组合框,只在输入数字时把其添加进列表中,输入的是字符的话不加入并且自动清空,这个怎么做啊????源代码如下:a=Combo1.TextIfKeyAsc...
请问,我要做一个简单组合框,只在输入数字时把其添加进列表中,输入的是字符的话不加入并且自动清空,这个怎么做啊????
源代码如下:
a = Combo1.Text
If KeyAscii = 13 Then
Combo1.AddItem a
Combo1.Text = ""
End If
If Not IsNumeric(Combo1.Text) Then
Combo1.RemoveItem Combo1.List
End If 展开
源代码如下:
a = Combo1.Text
If KeyAscii = 13 Then
Combo1.AddItem a
Combo1.Text = ""
End If
If Not IsNumeric(Combo1.Text) Then
Combo1.RemoveItem Combo1.List
End If 展开
2个回答
展开全部
Private Sub Text1_Change()
If IsNumeric(Text1.Text) Then '如果text1的内容是数字
List1.AddItem Text1.Text 'list1添加一个项目,内容是text1的内容
Else '否则
Text1.Text = "" 'text1的内容清空
End If
End Sub
'=================================================
'其实在List1.AddItem Text1.Text这句后面也应该加一句Text1.Text = "",不然的话..呵呵,你试试就知道了
If IsNumeric(Text1.Text) Then '如果text1的内容是数字
List1.AddItem Text1.Text 'list1添加一个项目,内容是text1的内容
Else '否则
Text1.Text = "" 'text1的内容清空
End If
End Sub
'=================================================
'其实在List1.AddItem Text1.Text这句后面也应该加一句Text1.Text = "",不然的话..呵呵,你试试就知道了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询