On 6/23/06, Daniel Tuppeny <
[EMAIL PROTECTED]> wrote:
I was using .day instead of .dateTFI Friday! =)
From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Daniel Tuppeny
Sent: 23 June 2006 15:33
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders] Difference between two datesI think I need more coffee....The following code (which I'm sure is correct!), returns around 2.8 when I'm expecting around 3.2. Anyone spot my error?public static function getMonths(startDate:Date, endDate:Date):Number
{
if (startDate > endDate)
{
var tmp:Date = endDate;
endDate = startDate;
startDate = tmp;
}
var numMonths:Number = 0;
// Get number of months in years
numMonths += (endDate.fullYear - startDate.fullYear) * 12
numMonths += endDate.month - startDate.month;
numMonths += (endDate.day - startDate.day) / 30; // This needs fixing
return numMonths;
}
______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________
[Inbound Mail Scanned by MessageLabs]
______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
______________________________________________________________________
--
Jason __._,_.___
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
SPONSORED LINKS
Web site design development Computer software development Software design and development Macromedia flex Software development best practice
YAHOO! GROUPS LINKS
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
__,_._,___
- [flexcoders] Difference between two dates Daniel Tuppeny
- RE: [flexcoders] Difference between two dates Daniel Tuppeny
- RE: [flexcoders] Difference between two dates Daniel Tuppeny
- Re: [flexcoders] Difference between two dates Pan Troglodytes
- [flexcoders] Re: Difference between two dates kellyb723
- RE: [flexcoders] Difference between two dates Gordon Smith
- Re: [flexcoders] Difference between two d... Pan Troglodytes
- RE: [flexcoders] Difference between two dates Daniel Tuppeny
- Re: [flexcoders] Difference between two dates Pan Troglodytes
- RE: [flexcoders] Difference between two dates Gordon Smith
- RE: [flexcoders] Difference between two dates Daniel Tuppeny
- RE: [flexcoders] Difference between two dates Tracy Spratt
- Re: [flexcoders] Difference between two dates Douglas Knudsen
Reply via email to