retranscrire un code vb en vb net
bonjour,
j'aurrai besoin d'aide pour retranscrire cela en vb net
Code:
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 |
sachant que j'ai commence avec cela
Dim cmds As OleDbCommand = cnn.CreateCommand
Code:
cmds.CommandText = String.Format("Select * from Table_BLOC_NOTES VALUES ('" & bloc_note & "'=""")
merci