Tagged Questions
3
votes
5answers
693 views
How do I get the last possible time of a particular day
I'm trying to achieve the last possible time of a particular day eg for Date of 2008-01-23 00:00:00.000 i would need 2008-01-23 23:59:59.999 perhaps by using the dateadd function on the Date field?
0
votes
1answer
35 views
Getting current day as number on masm?
I want a program to do X task twice a month. So I though about getting the current day as number so I could do something like if day == 1 or 15 then do X
Does someone has a simple masm example to get ...
0
votes
1answer
31 views
Days and Time Mathematical Expression
I have the following code:
max(seconds+minutes*60+hours*3600-time,0) however I need it to also count the number of days, would anyone have any advice?
Thanks!
TC
0
votes
1answer
595 views
Get time difference between two time of the day stamps
I was wondering if anyone knew of a jQuery plugin or code, which allows me to find the hours between two time stamps. For example:
If I enter 07:00 in the first box and 12:30 in the second, the ...
0
votes
2answers
117 views
rails-how to update attributes based on time/day
How would you update attributes in your database based on the time of day or what day it is. I have three attributes energy, hunger, and happiness that I want to decrease by ten every hour but I don't ...
0
votes
0answers
56 views
Local notification customisation knocking it out without showing an error
I'm quite new to XCode and despite reading a heap of things in books and online I'm having a bit of trouble with setting a local notification so that the user cannot specify it but rather I can ...
0
votes
2answers
925 views
PHP 'end date' from a given 'start date' - last day/15th of the following month
I'd like to get an 'end date' from a given 'start date' in PHP. End date is based off the start and are calculated as follows:
If Start date is from the 1-15th of the month, End date is the 15th of ...