Dec 2, 2010 #1 sacsac Programmer Dec 10, 2000 177 GB How can I retrieve the system Region & Language settings which define the year span used for 2-digit years. (e.g. 1932 to 2031) ?
How can I retrieve the system Region & Language settings which define the year span used for 2-digit years. (e.g. 1932 to 2031) ?
Dec 7, 2010 1 #2 realm174 Programmer Jan 3, 2002 154 CA how about: System.Globalization.CultureInfo.CurrentCulture.Calendar.TwoDigitYearMax which should give you the ending year... subtract 99, that'll give you your starting year for the range. Cheers, Realm174 Upvote 0 Downvote
how about: System.Globalization.CultureInfo.CurrentCulture.Calendar.TwoDigitYearMax which should give you the ending year... subtract 99, that'll give you your starting year for the range. Cheers, Realm174
Dec 8, 2010 Thread starter #3 sacsac Programmer Dec 10, 2000 177 GB Thank you realm174. That's exactly what I was looking for! Upvote 0 Downvote