bonjour ,
j ai une base access avec une colonne Quantite et des ligne J 0 , J 1, J 2
Sur une form 3 txtbox indexe
txt_Q
txt_Q(1)
txt_Q(2)
je voudrais recupere les valeures quantites de ma base
txt_Q = J0
txt_Q(1)=J1...
merci d avance
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12 Private Sub t_Qte_Change(Index As Integer) 'GESTION DES QUANTITE Dim temp As String For Index = 1 To 2 temp = Index With Adodc1.Recordset .MoveFirst .Find "num = '" & temp & "'" End With Next Index End Sub
Partager