bonjour,
j'aurrai besoin d'aide pour retranscrire cela en vb net
sachant que j'ai commence avec cela
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10 rstdepart.MoveFirst() Do Until rstdepart.EOF note = Nz(rstdepart![notes], "") If note <> "" Then notes = notes & note & vbCrLf End If rstdepart.MoveNext() Loop rstdepart.Close() rstdepart = Nothing
Dim cmds As OleDbCommand = cnn.CreateCommand
merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part cmds.CommandText = String.Format("Select * from Table_BLOC_NOTES VALUES ('" & bloc_note & "'=""")
Partager