首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

vb.net中怎么遍历listbox中的项并存入数组中?

2012-02-10 
vb.net中如何遍历listbox中的项并存入数组中??麻烦各位帮帮忙!![解决办法]Dim i As IntegerDim t As Integ

vb.net中如何遍历listbox中的项并存入数组中??
麻烦各位帮帮忙!!

[解决办法]
Dim i As Integer
Dim t As Integer
Dim s() As String
t = ListBox1.Items.Count
ReDim s(t - 1)
For i = 0 To t - 1
s(i) = ListBox1.Items(i)
Next
Return s

[解决办法]

探讨

Dim i As Integer
Dim t As Integer
Dim s() As String
t = ListBox1.Items.Count
ReDim s(t - 1)
For i = 0 To t - 1
s(i) = ListBox1.Items(i……

[解决办法]
具体的逻辑还要看自己怎么设计。
Dim Str As String
For Each Str In s
Select Case Str

Case Is = "需要"
'……

Case Is = "不需要"
'……

End Select

Next

热点排行