VB 如何判断 ListBox 中的一个元素是否被选中

2024-12-13 00:03:05
推荐回答(4个)
回答1:

List1.SelCount 返回在 ListBox 控件中被选中项的数量
List1.Selected(index) [= boolean] 返回或设置在 ListBox 控件中的一个项的选择状态

用循环遍历所有项目,判断Selected状态。给你个小例子变量定义我就省了:
For i = 0 To List1.ListCount
If List1.Selected(i) Then
'此时的i变量就是其中一选中项的index
'这里写上对被选中项目的操作代码
End If
End

回答2:

看看是不是你想要的,不是的话我再改
首先在窗体上放一个list1,MultiSelect设为2
代码如下
Private Sub List1_Click()
If List1.Selected(List1.ListIndex) = True Then Print "项目" & List1.List(List1.ListIndex) & "被选中了。" & "选中项的索引值为:" & List1.ListIndex
End Sub

回答3:

Private Sub List1_Click()
If List1.Selected(List1.ListIndex) = True Then Print "项目" & List1.List(List1.ListIndex) & "被选中了。" & "选中项的索引值为:" & List1.ListIndex
End Sub

回答4:

我没用过VB,不过下载个有提示的慢慢找就是啦。这个你有好的环境,慢慢积累经验就可以了,不需要死记。sorry,我也不知道。一般都是.selectIndexof或者ListBox.元素名字.selected是个boolean方法