VB 选中指定的combo1中的内容
一个combo1一个text1一个command1combo1中有鼠牛虎兔等等多行!!当我在text1里面输入“牛”然后点击command1即在列表中自动选中“牛”...
一个combo1一个text1 一个 command1
combo1中有 鼠 牛 虎 兔等等多行!!
当我在text1里面输入“牛” 然后点击command1即在列表中自动选中 “牛” 展开
combo1中有 鼠 牛 虎 兔等等多行!!
当我在text1里面输入“牛” 然后点击command1即在列表中自动选中 “牛” 展开
4个回答
2013-06-13
展开全部
Dim i As Integer
For i = 0 To Combo1.ListCount
If Text1.Text = Combo1.List(i) Then
Combo1.ListIndex = i
End If
Next
For i = 0 To Combo1.ListCount
If Text1.Text = Combo1.List(i) Then
Combo1.ListIndex = i
End If
Next
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-13
展开全部
combo1.style=1
Private Sub combo1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode <> 13 Then
combo1.Locked = True
End If
End Sub
Private Sub combo1_KeyUp(KeyCode As Integer, Shift As Integer)
If KeyCode <> 13 Then
combo1.Locked = False
End If
End Sub
Private Sub combo1_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode <> 13 Then
combo1.Locked = True
End If
End Sub
Private Sub combo1_KeyUp(KeyCode As Integer, Shift As Integer)
If KeyCode <> 13 Then
combo1.Locked = False
End If
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-13
展开全部
只要做一个text的change事件就行了:
Private Sub Text1_Change()
For i = 0 To Combo1.ListCount Step 1
If Text1.Text = Combo1.List(i) Then
Combo1.Text = Text1.Text
End If
Next
End Sub
Private Sub Text1_Change()
For i = 0 To Combo1.ListCount Step 1
If Text1.Text = Combo1.List(i) Then
Combo1.Text = Text1.Text
End If
Next
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-06-13
展开全部
dfsaf fdsaf ewerrl;kl ;l ;uoiu
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询