0

我有一个列表框..如果我选择任何我想在我的数据表中获取它的项目,所以我给出了这样的代码:

 Dim dtlist As New DataTable()
        Dim locid As Integer
        If cnt > 0 Then
            For i = 0 To cnt - 1
                Dim locationanme As String = LSTlocations.SelectedItems(i).ToString
                locid = RecordID("Locid", "Location_tbl", "LocName", locationanme)
                dtlist.Columns.Add(locid)
            Next
           end if  

然后我想检查我的数据表是否包含我的列表框选择的值。我想显示这些值我该怎么做?

4

1 回答 1

0

使用 CheckedListBox。因为您可以使用该属性实现所需的功能,

'可以使用以下代码获取任何第 i 个项目的索引 chklistbox1.CheckedIndices(i)

'可以使用下面的代码 chklistbox1.CheckedItems(i).ToString 将任何第 i 个项目的值作为字符串

于 2013-10-22T08:05:40.373 回答