Time comparison
-
Hi all, I want to compare my system time with the time in MS Access table. I want to display those records which are greater than the current time(even the seconds not the milli seconds). Plz any one suggest me the query. Thanks in advance bye
Know is Drop, Unknown is Ocean
-
Hi all, I want to compare my system time with the time in MS Access table. I want to display those records which are greater than the current time(even the seconds not the milli seconds). Plz any one suggest me the query. Thanks in advance bye
Know is Drop, Unknown is Ocean
Hi, I hope you can use CompareTo() method available in DateTime class. Basically you need to provide your current that will be available in your system. You can get it through using DateTime.Now Then get the Datetime from access table and use the CompareTo method to findout the difference. Hope this will help Rakheesh