Private Sub ChoixNom_Click()
' On sort si flag actif
If FlgExit = True Then Exit Sub
'
Dim Ligne As Integer
Ligne = ChoixNom.ListIndex + 10 'décalage de 9 ligne depuis le haut
With Sheets("EDP")
'------------------ Transfert Feuille EDP > Formulaire MODIFICATION - PARTIE CADASTRE
Ordre = Sheets("EDP").Cells(Ligne, 1)
TB_Cree = Sheets("EDP").Cells(Ligne, 29)
Commune_RC1 = Sheets("EDP").Cells(Ligne, 30)
Lieudit1 = Sheets("EDP").Cells(Ligne, 31)
Section1 = Sheets("EDP").Cells(Ligne, 32)
Parcelle1 = Sheets("EDP").Cells(Ligne, 33)
NatureSol1 = Sheets("EDP").Cells(Ligne, 34)
Commune_RC2 = Sheets("EDP").Cells(Ligne, 35)
Lieudit2 = Sheets("EDP").Cells(Ligne, 36)
Section2 = Sheets("EDP").Cells(Ligne, 37)
Parcelle2 = Sheets("EDP").Cells(Ligne, 38)
NatureSol2 = Sheets("EDP").Cells(Ligne, 39)
Commune_RC3 = Sheets("EDP").Cells(Ligne, 40)
Lieudit3 = Sheets("EDP").Cells(Ligne, 41)
Section3 = Sheets("EDP").Cells(Ligne, 42)
Parcelle3 = Sheets("EDP").Cells(Ligne, 43)
NatureSol3 = Sheets("EDP").Cells(Ligne, 44)
Nom = Sheets("EDP").Cells(Ligne, 45)
Ad1 = Sheets("EDP").Cells(Ligne, 46)
Ad2 = Sheets("EDP").Cells(Ligne, 47)
Ad3 = Sheets("EDP").Cells(Ligne, 48)
'-----------------------------------------------------------------------------------
End With
End Sub