用vb编程序 ,ListBox控件的Style属性已经设置为1-Checkbox,可以多选,如何获得所有选中数据?? 10
用list.text或者list.index都只能或得当前选中的(只有一个值),有什么方法能把所有值都获取呢?...
用list.text 或者list.index都只能或得当前选中的(只有一个值),有什么方法能把所有值都获取呢?
展开
2个回答
展开全部
ListBox.SelCount 表示选中的个数,如果用数组的话,可以这样定义 dim a(1 to ListBox.SelCount ),然后来放入数据
用循环搜索选中的的数据
Dim a(1 to ListBox.SelCount )
Dim b as intenger
b = 1
For i=0 to ListBox.ListCount
If List1.Selected(i) Then '如果条目被选中
'获得选中条目数据
a(b)=List1Box.list(i)
b=b+1
end if
Next i
用循环搜索选中的的数据
Dim a(1 to ListBox.SelCount )
Dim b as intenger
b = 1
For i=0 to ListBox.ListCount
If List1.Selected(i) Then '如果条目被选中
'获得选中条目数据
a(b)=List1Box.list(i)
b=b+1
end if
Next i
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询