datetime

how can you add one month to a date in javascript / jquery

if i have a textbox with a date in it, i want to change the textbox to show one month later ...

Is there a faster way to check if this is a valid date?

Is there a faster way then to simply catch an exception like below? try { date = new DateTime(model_.Date.Year, model_.Date.Month, (7 * multiplier) + (7 - dow) + 2); } catch (Exception) { // This is an invalid date } ...

Flex: convert VideoPlayer.currentTime to string "00:00:00:000"

Hi there! what about this one: I want to format the currentTime displayed by a videoPlayer component inside flex, something like : 8230.999 to something like 01:59:59:999 which is "hours:minutes:seconds:milliseconds" I trie different sets of codes but they can't get it to work because currentTime is nor a correct miliseconds time as it...

How do I get the last day on the month using SQL Reporting Services

In SQL Server Reporting Services, how would I get calculate the last day of the current month? ...

Is there a good date/time API available for Scala?

I'm looking for something akin to JodaTime or JSR 310 for Scala that leverages nice Scala features such as operator overloading and doesn't rely on implicit conversions (I have an irrational fear of implicit conversions). I'm aware of http://github.com/jorgeortiz85/scala-time, but it just pimps JodaTime with implicits. ...

How to change the date format in JavaScript?

Hey Guys I am using one jquery date picker, with using picker i am getting date in like this format Friday, May 21, 2010 Now i want to add one day in this date so i think, i can only do if i change the date in exact format like 21/5/2010 I want to only convert that bcz i want to add one day to the particular date. So what do u suggest ...

Why is Rails date comparison not working?

What am I missing here, it's driving me crazy.. >> user.current_login_at.utc > 24.hours.ago.utc => false >> 24.hours.ago.utc => Mon May 17 18:46:16 UTC 2010 >> user.current_login_at.utc => Mon May 17 15:47:44 UTC 2010 user.current_login_at was 27 hours ago, yet the greater than comparison says it was not greater than 24 hours ago. It ...

Oracle TIMESTAMP w/ timezone data type confusion

When would you use TIMESTAMP w/ timezone as opposed to TIMESTAMP w/ local time zone? When data is stored in a column of data type TIMESTAMP w/ local tz, the data is normalized to the database time zone, and the time zone displacement is not stored as part of the column data. When users retrieve the data, Oracle returns it in the users'...

Converting datetime.ctime() values to Unicode

I would like to convert datetime.ctime() values to Unicode. Using Python 2.6.4 running under Windows I can set my locale to Spanish like below: >>> import locale >>> locale.setlocale(locale.LC_ALL, 'esp' ) Then I can pass %a, %A, %b, and %B to ctime() to get day and month names and abbreviations. >>> import datetime >>> dateValue ...

How do I subtract two dates in Django/Python?

Hi! I'm working on a little fitness tracker in order to teach myself Django. I want to graph my weight over time, so I've decided to use the Python Google Charts Wrapper. Google charts require that you convert your date into a x coordinate. To do this I want to take the number of days in my dataset by subtracting the first weigh-in from...

XML Timezone remove

I have a Date coming from SQL 2010-05-11 10:30:00 But when i applyc XSL it is adding the 2010-05-11T10:30:00-04:00 time zone offset. Is there any way we can remove that from XSL. ...

why datetime.now() shows invalid result when executed inside django server ?

Case 1 >>> datetime.__file__ '/usr/lib/python2.6/lib-dynload/datetime.so' >>> print datetime.datetime.now() 2010-05-19 19:45:40.202634 Case 2 from django.db import models import datetime print datetime.__file__ print "--------------------------", datetime.datetime.now() -----------Result-------- Development server is running at ht...

DateTime Compare in c#

Hi, I want to compare two dateTime. Ex: date1 = 13/01/2004 12:20:00 date2 = 13/01/2004 12:35:00 result = Compare(date2-date1); O/P : 15 Minutes Thanks ...

DateTime Subtract in C#

I want to subtract from a DateTime. Example: date1 = 13/01/2004 12:20:00 result = Subtract(date1-15); Output: 13/01/2004 12:05:00 How do I do this? ...

In Python, how to I create a datetime with X hours?

How do I create the datetime that is 24 hours before NOW()? 48 before NOW()? X hours or days before now?? ...

.net c# text box date with mask - setup

I have a c# .net project and want an input text box for a date value. I want it to display a default value of mm/dd/yyyy and then allow users to enter valid dates. I have tried using a masked text box but it doesn't like having the above format. If i try and use //__ looks naff and so does 00/00/0000 and of course if you put in '0'...

C# Method to sum hh:mm data ???

I want a method that will sum data that is string in the format hh:mm (time hours and minutes) 0:15 + 0:15 = 0:30 Am I asking for too much !!! ;-) ...

Round .NET DateTime milliseconds, so it can fit SQL Server milliseconds

I want to convert the datetime value to the value that I will get from SQL Server 2008. SQL Server truncate the milliseconds to 3 digits, so I truncate the milliseconds already. But the problem is that as you can see here: http://stackoverflow.com/questions/634122/milliseconds-wrong-when-converting-from-xml-to-sql-server-datetime. SQL S...

Convert historic dates from utc to local time

I have an sql table with data like this: | theDate (datetime) | theValue (int) | ---------------------------------------- | 2010-05-17 02:21:10 | 5 | | 2009-03-12 04:11:35 | 23 | | 2010-02-19 18:16:53 | 52 | | 2008-07-07 22:54:11 | 30 | The dates are stored in UTC format in a datetime ...

Changing timezone without changing time in Java

Hi! I'm receiving a datetime from a SOAP webservice without timzone information. Hence, the Axis deserializer assumes UTC. However, the datetime really is in Sydney time. I've solved the problem by substracting the timezone offset: Calendar trade_date = trade.getTradeDateTime(); TimeZone est_tz = TimeZone.getTimeZone("Australia/Sydney")...