Awesome! But I do need to have the day pop up in the next textbox. I tried
to use the Format property to extract it after setting the control source to
the textbox before it but was unable to get it to only show the day. How do
I do that?
Why in *THE NEXT TEXTBOX* rather than in *THE VERY SAME TEXTBOX*?
You clearly did not try my suggestion, because *it will work*.
Again: open the form in design view. Select the textbox. Find the Format
property. In the Format property type
"dddd dd/mm/yyyy"
If the user types 3/22 into the textbox on the form and tabs out of it, the
textbox will change its appearance and will now show
Monday 03/22/2010
This does not need any code; it does not need the Format() VBA function; it
does not need a second textbox; and it *does* enable them to instantly see if
they have the correct date.
Perhaps you could explain why you find this solution unacceptable.