Click here to Skip to main content
15,886,851 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i Already connected the checkbox in sql and it's already working, but the checked and unchecked items doesn't show up.. I want to have a checked and unchecked items that are still shown. i want them to still check.
VB
Dim str As String = "SELECT posid, POSITION FROM pos;"
      Dim ctr As Integer

      CLSCONN = New C_connection
      CLSCONN.ACCESS_INDREC(str)
      cboposition.Items.Clear()
      With CLSCONN.ds
          Dim dt As New DataTable

          For ctr = 0 To .Tables(0).Rows.Count - 1
              cboposition.Items.Add(.Tables(0).Rows(ctr).Item(1))
          Next
Posted
Updated 12-Oct-13 7:54am
v5
Comments
[no name] 12-Oct-13 13:22pm    
sorry I could not get your question. please try to explain.
Gadgetzoned 13-Oct-13 0:55am    
I want to still check and unchecked items in checkbox inside the listview.
Gadgetzoned 12-Oct-13 13:48pm    
I want to still check and unchecked items in checkbox inside the listview.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900