> Re-installing is unlikely to help.
>
> See the "Dates: day/month reversed" item under the "Connection methods"
> topic of the "Mail merge in Word 2002" section of fellow MVP Cindy
> Meister's website at
> http://homepage.swissonline.ch/cindymeister/MergFram.htm
Are you sure the PCs are all patched to the same level? I seem to recall
that this issue was fixed by a Windows update?

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>> Re-installing is unlikely to help.
>>
[quoted text clipped - 31 lines]
> problem I might have to use the format() function within the queries
> anyway.
1. If there is a difference in the software configuration on your PCs, the
most likely place is the version of the MDAC/Jet OLEDB provider. I /think/
you can find that out by looking in the registry - my first guess would be
to look for a value "MDACVer.Version" then look in the next key down
(InstalledVersion) for the version number.
2. Another possibility is that four of your PCs are actually connecting
using OLEDB and the other one is connecting using ODBC (or vice versa). That
can happen because when Word tries to connect to Access, by default it first
tries OLEDB, then ODBC (and then DDE). of course that just pushes the
problem back one step - i.e. why is one machine doing /that/ differently? -
but the answer to that question would typically be that there is a
difference in the security environment.
> Second, I could use the format function within access so that it passes
> the
[quoted text clipped - 13 lines]
> format them as text the calculations become a lot more complex (if at all
> possible).
3. I wouldn't want to either. But some things that might make it a bit
easier for you to consider:
> One - because in the word document I use switches to display the date in a
> couple of different formats (long and short) and would thus have to alter
> the
> query to spit out one date field for each format I needed.
If you format your string as YYYY-MM-DD I /think/ you will still be able to
apply Word format switches successfully, and get the month and day the right
way around. You can also experiment with having three fields, YYYY, MM, DD.
> Two - there are about 20 other queries and merge documents that we have
> set
> up, so I'd have to make the changes (and add extra fields) in all of them.
(Nothing I can do about that).
> Three - I don't know if there are other ways I might use the queries in
> the
> future where I would need to do calculations with the date field. If I
> format them as text the calculations become a lot more complex (if at all
> possible).
Consider having queries that return the dates in more than one format. Word
cannot in any case calculate very well with dates, so you could probably
just use YYYY-MM-DD (for Word) and the original unaltered date format (for
everything else).
Peter Jamieson
>> Re-installing is unlikely to help.
>>
[quoted text clipped - 42 lines]
> problem I might have to use the format() function within the queries
> anyway.