Click here to Skip to main content
15,894,720 members
Home / Discussions / C#
   

C#

 
Generalweek numbers Pin
robmays16-Apr-04 0:02
robmays16-Apr-04 0:02 
GeneralRe: week numbers Pin
Stefan Troschuetz16-Apr-04 0:22
Stefan Troschuetz16-Apr-04 0:22 
GeneralRe: week numbers Pin
robmays16-Apr-04 0:25
robmays16-Apr-04 0:25 
GeneralRe: week numbers Pin
Stefan Troschuetz16-Apr-04 1:02
Stefan Troschuetz16-Apr-04 1:02 
GeneralRe: week numbers Pin
Colin Angus Mackay16-Apr-04 2:13
Colin Angus Mackay16-Apr-04 2:13 
GeneralRe: week numbers Pin
robmays16-Apr-04 2:23
robmays16-Apr-04 2:23 
GeneralRe: week numbers Pin
Stefan Troschuetz16-Apr-04 2:45
Stefan Troschuetz16-Apr-04 2:45 
GeneralRe: week numbers Pin
Colin Angus Mackay16-Apr-04 3:05
Colin Angus Mackay16-Apr-04 3:05 
robmays wrote:
// Set DayofYear Number for yyyy mm dd
DayOfYearNumber = dd + Mnth[mm-1];

// Increase of Dayof Year Number by 1, if year is leapyear and month is february
if ((IsLeapYear(yyyy) == true) && (mm == 2))
DayOfYearNumber += 1;


The result of this calculation will be wrong for any date from the 1st February onwards on a leap year. You will increase the DayOfYearNumber on a leap year if the month is February (before the leap day occurs), but not for the remainder of the months in the year (after the leap day).

try:
if ((IsLeapYear(yyyy)) && (mm > 2))
    DayOfYearNumber++;



"You can have everything in life you want if you will just help enough other people get what they want." --Zig Ziglar

Coming soon: The Second EuroCPian Event[^].


GeneralRe: week numbers Pin
Bee Master16-Apr-04 3:06
Bee Master16-Apr-04 3:06 
GeneralRe: week numbers Pin
Stefan Troschuetz16-Apr-04 3:27
Stefan Troschuetz16-Apr-04 3:27 
GeneralRe: week numbers Pin
robmays16-Apr-04 4:06
robmays16-Apr-04 4:06 
GeneralRe: week numbers Pin
Colin Angus Mackay16-Apr-04 4:12
Colin Angus Mackay16-Apr-04 4:12 
GeneralRe: week numbers Pin
Heath Stewart16-Apr-04 6:41
protectorHeath Stewart16-Apr-04 6:41 
GeneralRe: week numbers Pin
robmays16-Apr-04 6:54
robmays16-Apr-04 6:54 
GeneralRe: week numbers Pin
Heath Stewart16-Apr-04 7:47
protectorHeath Stewart16-Apr-04 7:47 
GeneralRe: week numbers Pin
robmays16-Apr-04 8:07
robmays16-Apr-04 8:07 
GeneralRe: week numbers Pin
robmays16-Apr-04 8:35
robmays16-Apr-04 8:35 
GeneralRe: week numbers Pin
robmays16-Apr-04 9:59
robmays16-Apr-04 9:59 
GeneralRe: week numbers Pin
robmays16-Apr-04 19:33
robmays16-Apr-04 19:33 
GeneralRe: week numbers Pin
Heath Stewart19-Apr-04 2:06
protectorHeath Stewart19-Apr-04 2:06 
Generalan error with tabpage Pin
robmays19-Apr-04 3:57
robmays19-Apr-04 3:57 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 3:58
protectorHeath Stewart19-Apr-04 3:58 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 4:06
robmays19-Apr-04 4:06 
GeneralRe: an error with tabpage Pin
Heath Stewart19-Apr-04 4:21
protectorHeath Stewart19-Apr-04 4:21 
GeneralRe: an error with tabpage Pin
robmays19-Apr-04 6:14
robmays19-Apr-04 6:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.