Private Property Let Mnt(ByVal TBx As MSForms.TextBox, ByVal RHS As Variant)
On Error Resume Next
TBx.Text = Format(RHS, "0.00 €")
If Err Then TBx.Text = ""
End Property
Private Property Get Mnt(ByVal TBx As MSForms.TextBox)
On Error Resume Next
Mnt = CCur(TBx.Text)
If Err Then Mnt = Empty
End Property