Currently I'm using this:
Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)
If Len(TextBox1.Value) > 3 Then
TextBox1.Value = Format$(TextBox1.Value, "0,000")
End If
End Sub
Private Sub TextBox2_Exit(ByVal Cancel As MSForms.ReturnBoolean)
If Len(TextBox2.Value) > 3 Then
TextBox2.Value = Format$(TextBox2.Value, "0,000")
End If
End Sub
But I have more than 20 of that type of entry box on the form...
Since I need to do the "If Len(TextBox1.Value) >3" Check after the user inputs the data I can't think of a different way to do this.
Additionally there is no guarantee that the user will even NEED to put anything in more than half the boxes.
Bookmarks