Private Sub Cont2_AfterUpdate()
Cont2 = Format(Cont2, "# ##0.00")
If Me.Cont2.Value = "" Or Me.Cont4.Value = "" Then Exit Sub
TextBox1 = CDec(Cont2) * CDec(Cont4)
End Sub
Private Sub Cont4_AfterUpdate()
Cont4 = Format(Cont4, "# ##0.00 €")
If Me.Cont2.Value = "" Or Me.Cont4.Value = "" Then Exit Sub
TextBox1 = CDec(Cont2) * CDec(Cont4)
End Sub
Private Sub TextBox1_Change()
TextBox1 = Format(TextBox1.Value, "# ##0.00 €")
End Sub