chaelie2015
XLDnaute Accro
Bonsoir Forum
je souhaite corriger ce code ( bouton dans USF pour modifier des données)
si je change la valeur de cbx_NuméroContrat,il ne commence par la ligne 4 ?
Merci par avance
je souhaite corriger ce code ( bouton dans USF pour modifier des données)
VB:
Private Sub btn_Modifier_Click()
Dim modif As Integer
If Not cbx_NuméroContrat.Value = "" Then
Sheets("BdD Projets").Select
modif = cbx_NuméroContrat.ListIndex + 4
Cells(modif, 2) = cbx_NuméroContrat.Value
Cells(modif, 3) = tbx_NuméroAP.Value
Cells(modif, 4) = tbx_Objet.Value
Cells(modif, 5) = tbx_Constructeur.Value
Cells(modif, 6) = cbx_PourCompte.Value
Cells(modif, 8) = tbx_Délais.Value
Cells(modif, 9) = tbx_DateOds.Value
Cells(modif, 7) = tbx_Montant.Value
Cells(modif, 11) = tbx_DateOC.Value
Cells(modif, 12) = tbx_AvenantDélais.Value
Cells(modif, 13) = tbx_DateMESRéelle.Value
Cells(modif, 35) = tbx_Observation.Value
MsgBox ("Modification effectueé")
Else
MsgBox ("Veuillez sélectionné le numéro du contrat à modifier")
Exit Sub
End If
End Sub
Merci par avance