1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| Private Sub Calculer_Click()
Dim tva As Double
'calculer le TTC
If OB2_1 = True Then
TBTTC = TBHT.Value * 1.021
End If
If OB5_5 = True Then
TBTTC = TBHT.Value * 1.055
End If
If OB7_00 = True Then
TBTTC = TBHT.Value * 1.07
End If
If OB19_6 = True Then
TBTTC = TBHT.Value * 1.196
End If
End Sub
Private Sub Quitter_Click()
End
End Sub
Private Sub TBHT_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
TBTTC.Text = ""
TBHT.Text = ""
End Sub
Private Sub TBTTC_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single)
TBTTC.Text = ""
TBHT.Text = ""
End Sub
Private Sub UserForm_Click()
End Sub |