G
|
glazer 2/15/2010 |
Hello, I am using 6.2 with SQL 2008. All system/project locales are UK. The following code: dal.Accounts.Value("Date")= DATE dal.Accounts.Update() will produce a US date instead of a UK date, meaning the days and months are reversed. Apart from producing incorrect dates, anything after the 12th day is no longer a valid US date and a conversion error is produced. Please help.
|
![]() |
Sergey Kornilov admin 2/15/2010 |
Levski, dal.Accounts.Value("Date")= Year(Date()) & "-" & Month(Date()) & "-" & Day(Date())
|