473,657 Members | 2,544 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

date default settings on Access

Hi, can someone tell me how I change the settings in my Access 97 to
default to English dates rather than US dates?

I notice all my dates like 1/5/2007 is being treated as 5th Jan 2007
rather than 1 May 2007.

Colm

May 2 '07 #1
3 8635
"colmkav" <co******@yahoo .co.ukwrote in message
news:11******** *************@c 35g2000hsg.goog legroups.com...
Hi, can someone tell me how I change the settings in my Access 97 to
default to English dates rather than US dates?

I notice all my dates like 1/5/2007 is being treated as 5th Jan 2007
rather than 1 May 2007.
That is a Windows setting, not an Access setting. Further if you are talking
about how date literals are interpreted in code and queries, any time you use an
ambiguous format Access will *always* assume US format first unless that results
in an invalid date value. For those situations you are best served using a
non-ambiguous format like ISO yyyy-mm-dd.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
May 2 '07 #2
thx. the windows setting which I have changed resolved them problem.
Not sure what you mean in the second part. Surely if you set the
windows settings to English dates Access will not treat dates as
English ones.

when I called dateadd("d", 1, dt). where dt is the date 1/5/2007. I
get 2/5/2007 returned. before I made this change I got 1/6/2007.

What cases does Access choose US?
On 2 May, 13:29, "Rick Brandt" <rickbran...@ho tmail.comwrote:
"colmkav" <colmj...@yahoo .co.ukwrote in message

news:11******** *************@c 35g2000hsg.goog legroups.com...
Hi, can someone tell me how I change the settings in my Access 97 to
default to English dates rather than US dates?
I notice all my dates like 1/5/2007 is being treated as 5th Jan 2007
rather than 1 May 2007.

That is a Windows setting, not an Access setting. Further if you are talking
about how date literals are interpreted in code and queries, any time you use an
ambiguous format Access will *always* assume US format first unless that results
in an invalid date value. For those situations you are best served using a
non-ambiguous format like ISO yyyy-mm-dd.

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com

May 2 '07 #3
colmkav wrote:
thx. the windows setting which I have changed resolved them problem.
Not sure what you mean in the second part. Surely if you set the
windows settings to English dates Access will not treat dates as
English ones.

when I called dateadd("d", 1, dt). where dt is the date 1/5/2007. I
get 2/5/2007 returned. before I made this change I got 1/6/2007.

What cases does Access choose US?
As stated, when using literal date strings in queries or code.

UPDATE TableName
SET DateField = #1/9/2007#

Will result in that field being updated to January 9th 2007 regardless of
the regional settings in Windows. If you wanted September 1st you would
need to use a non-ambiguous format like...

#1-Sep-2007#
#2007-09-01#
#September 1, 2007#

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com

May 2 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
5210
by: androtech | last post by:
Hello, I'm looking for a function that returns a date range for a specified week number of the year. I'm not able to find functions like this anywhere. Any pointers/help would be much appreciated. TIA
6
2203
by: Jerome | last post by:
Hi, I know this is an old problem and I've already tried to look the solution up on the web but I didn't find what I need. So, there's the following situation: I've got an ASP page with a form, containing two fields that poses problems 1. birthday field
15
43002
by: Simon Brooke | last post by:
I'm investigating a bug a customer has reported in our database abstraction layer, and it's making me very unhappy. Brief summary: I have a database abstraction layer which is intended to mediate between webapps and arbitrary database backends using JDBC. I am very unwilling indeed to write special-case code for particular databases. Our code has worked satisfactorily with many databases, including many instances MS SQLServer 2000...
1
4498
by: Delatere | last post by:
Hello, can anabody help? in the following part i cannot pass de desired default value In the module of the mbd i declared: Global datum_Glo As String in a form (Dossier_FRM)i did
5
2930
by: m_t_hill | last post by:
Running MS Access 2000 MS Windows XP Pro This has caused me a lot of hair loss in the last few days so would appreciate any help. I am running code to append/update a local access database from a remote MS SQL database. The method of determining which records to append is primarily using the last date an update was carried out; I appreciate that there is probably a better way of doing this but time
3
5913
by: Marauderz | last post by:
Hello guys, got a little question regarding the regional language settings . Anyway I got a Windows 2003 Server machine that was installed with the date format "dd/MM/yyyy" and location still locked in US. As we migrated certain apps over to the new machine. we found out something... someone coded a Now.ToString in a database query... and the SQL Box is running MM/dd/yyyy! Chaos follows!!! I tried setting the Administrator account's...
2
1540
by: tricard | last post by:
Good morning, I am writing code to create a packing list number that is based on the date entered from the workstation that the user is on. However, I do not know how to determine the date settings and then act accordingly to these date settings. eg: By default, today's date is entered into txtDate. Then, the packing list number is automatically generated as yyyymmssss where ssss is the serial sequential number. I have written code...
1
12235
by: Doug | last post by:
Hi, I created a short date field. The format is dd/mm/yyyy when displayed. The input mask is set to 99/99/00;0 (default, I didn't type anything). If I edit an existing date, say change 12/14/2007 to 12/15/2007, I get an error "the value you entered isn't appropriate for the input mask." I have to delete the "20" in the year to get it accepted, and then it puts the 20 right back. (I have the field set to required.) I changed 99/99/00;0...
30
5691
by: fniles | last post by:
On my machine in the office I change the computer setting to English (UK) so the date format is dd/mm/yyyy instead of mm/dd/yyyy for US. This problem happens in either Access or SQL Server. In the database I have a table with Date/time column. The database is located on a machine that is set to dd/mm/yyyy also. When I enter date 7/1/08 (as in January 7, 2008), it stores it in the database as 1/7/08 instead of 7/1/08. Why is it like that...
0
8825
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8503
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8605
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7324
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5632
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4151
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4302
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2726
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1611
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.