Thanks for the tip, but what I want to do is to make the format correct right when the user get to the field.
I already made is like this:
Private Sub OrderDate_Enter()
Me.OderDate = Format(Me.OderDate, "dd/mm/yyyy")
End Sub
Questions:
1) Is this possible?
2) If yes, what's wrong with my...