I'm working on a file to be used with FMTouch on an iTouch. Since this app doesn't effectively let you choose a year when entering a date field that's set up as a calendar, I need to set it up as a regular text edit field.
This is all fine so far, but I also need to format the date as DD/MM/YYYY. I can do this manually under Format-->Date, but the program still only allows me to enter the date as MM/DD/YY. If I try to put in 23/12/2003, for example, I get an error message. If I enter 12/23/2003, it accepts and displays it as 23/12/2003.
This would still be OK, but I want to avoid confusion about entering values like 4/3/2003. If someone mistakenly enters March 4 as this (DD/MM), it will accept the value and display it as 3/4/2003, or April 3.
The database will be used in a country where DD/MM/YYYY is standard, so I'd prefer to only deal with that format. Thoughts?