[VB.net] CheckedListBox et SqlServer
Salut,
Encore bloqué dans mon projet:
J'ai ajouter une CheckedListBox et je voudrai avoir à l'interieur : les données de ma table logiciel.
L'utilisateur pourra cocher les logiciels disponible.
Voila mon code :
Code:
1 2 3 4 5 6
| Dim DLog As SqlDataReader
Dim TLog As New DataTable
TLog.Columns.Add("Display")
Dim RqtLog As sqlCommand
RqtLog = New SqlCommand("select nomlogiciel from logiciel", Connexion.***)
DLog = RqtLog.ExecuteReader |
après je ne sais pas trop comment insérer dan la checkedlistBox :calim2:
Merci.