根据数据库中的数据检查checklistbox

时间:2012-05-05 21:17:32

标签: mysql vb.net winforms

我想根据数据库中返回字段的值是否与CheckListBox项的名称相同来检查CheckListBox中的项目。

这是我做的循环:

        While (myReader.Read())
            For I = 0 To clbMyBox.Items.Count - 1
                If clbMyBox.Items(I).ToString = myReader.GetString(0) Then
                    clbMyBox.SetItemChecked(I, True)
                End If
            Next
        End While

不幸的是,这只会检查所有复选框。我知道其余的工作,myReader.GetString(0)确实返回了我想要的数据。

0 个答案:

没有答案