dynamically add items to checkedlistbox vb.net

281 Views Asked by At

how i can add dynamically items with tag to checklistbox, with this code i get the checkbox without value.

Dim item As CheckBox
                        While data.Read
                            item = New CheckBox()
                            With item
                                .Name = data.GetString(0)
                                .Tag = data.GetInt64(2)
                                .Text = data.GetString(0)
                            End With
                            ListeBases.Items.Add(item)
                        End While
0

There are 0 best solutions below