1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| Private Sub choix_nom_Change()
Me.Nom = Me.choix_nom
'ici tu defini la valeur de ta ligne, cette m^mee valeur sera utilisé dans ton autre code pour mettre a jour la ligne
Lig = choix_nom.ListIndex
photo = Cells(Lig + 2, 2)
Me.Tph = Cells(Lig + 2, 3)
valmarch = Cells(Lig + 2, 4)
prixht = Cells(Lig + 2, 5)
livraison = Cells(Lig + 2, 6)
tva = Cells(Lig + 2, 7)
etattva = Cells(Lig + 2, 8)
prixttc = Cells(Lig + 2, 9)
ventemin = Cells(Lig + 2, 10)
venteestim = Cells(Lig + 2, 11)
ecart = Cells(Lig + 2, 12)
ChDir ActiveWorkbook.Path ' Les photos sont dans le répertoire de l'application
If Dir(photo) <> "" Then ' La photo existe t-elle?
Me.monimage.Picture = LoadPicture(photo)
Else
Me.monimage.Picture = LoadPicture("transparent.gif")
End If
End Sub |
Partager