When we trying to store a system generate dateTime into database (eg access database in this case). The date format that stores into access database is depends on the PC setting or access setting. Therefore, it's better for us to use international time format instead of US or UK time format.
Example in VB.NET
DateTime.Now.Year.ToString + "/" + DateTime.Now.Month.ToString + "/" + DateTime.Now.Day.ToString + "/" + DateTime.Now.ToShortTimeString
Output time format will be YYYY/MM/DD 00:00

[this is good] Today I read on this question much.
Posted by: Silvester Lord | 06/16/2010 at 08:31 AM