What I have found is that the formatting of the date really drives the sorting on the form. I have figured out my own way of having it be reliable, but still look normal to the user.
Here is what I do in this case:
I format the data of the underlying query like this:
Format$([ProductionDate],"yyyy/mm/dd") AS PdateSortsGood
So, the info comes out like 2007/07/25.
But, since the users of the form don't want to see this strange format which make it line up down the form correctly, I reformat in the text box the way the user wants to see it.
Then, in the control source area of your text box properties put it:
=Format$([PdateSortsGood],"mm/dd/yyyy") which will then make it appear common to the user.
|