Private Sub CommandButton1_Click()
If TextBox1.Value Or TextBox2.Value > 0 Then
Feuil4.Cells(7, 2) = TextBox3.Value / 100
Feuil4.Cells(8, 2) = TextBox4.Value / 100
Else
MsgBox ("Il faut rentrer une valeur")
End If
End Sub
Private Sub CommandButton2_Click()
Unload Me
End Sub
Private Sub TextBox3_Change()
End Sub
Private Sub TextBox4_Change()
End Sub
Private Sub UserForm_Activate()
TextBox3.Value = Feuil4.Cells(7, 2) * 100
TextBox4.Value = Feuil4.Cells(8, 2) * 100
End Sub
Private Sub UserForm_Click()
End Sub