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 Str As String
For Each Str In s
Select Case Str
Case Is = "需要"
'……
Case Is = "不需要"
'……
End Select
Next