我正在使用 vb.net 我有一个列表框名称 LSTlocations ..我可以从该列表框中选择多个位置..我正在将特定位置的 id 获取到一个列表变量..所以我给出了这样的代码:
cnt = LSTlocations.SelectedItems.Count
Dim strname As String
If cnt > 0 Then
For i = 0 To cnt - 1
Dim locationanme As String = LSTlocations.SelectedItems(i).ToString
Dim locid As Integer = RecordID("Locid", "Location_tbl", "LocName", locationanme)
Dim list As New List(Of Integer)
list.Add(locid)
Next
End If
但我没有在我的列表变量中获取我所有选定的位置 ID。我如何从我的列表框中获取所有选定的位置 ID 以列出变量