you might want to check the format of the date field within access, check that it does not have a format mask, or whatever it's called. Also, check whether the change in the date happens when the date gets to access, or after it gets recalled from the database...
if all else fails, try running the following function on your dates before you insert them... i had an access backend for a page i was working on months ago that i had this problem with, and it fixed it...
function formatdate(thedate)
theday = datepart("d",thedate)
themonth = datepart("m",thedate)
theyear = datepart("yyyy",thedate)
thedate = themonth & "/" & theday & "/" & theyear
end function
don't ask me why it does it... i knew, i forgot, we moved on with our lives...
