473,413 Members | 1,807 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,413 software developers and data experts.

Daylight Savings in 2007

There are changes to Daylight Savings Time in 2007. I have found a posting
on Microsoft.com (http://www.microsoft.com/windows/timezone/dst2007.mspx)
saying that there will be patches for the Operating Systems in mid-November
this year. Does anyone know what is planned for the different .NET versions
(1.0, 1.1 and 2.0) and older runtime environments (for example, VisualC++
and VisualBasic 6.0, VisualStudio 7.0, etc). I looked on both Microsoft.com
and MSDN.Microsoft.com and couldn't find anything pertinent.

This is going to be a large issue with our scheduling programs which use
DateTime in VB, C# and C++. I believe we also have some unmanaged C++ that
use C-runtime and OLEDateTime calculations.

If you have seen something could you please post a URL or other location
that I can use for a report to my management.

Thanks in advance....
Nov 7 '06 #1
10 1089
>Does anyone know what is planned for the different .NET versions
(1.0, 1.1 and 2.0) and older runtime environments (for example, VisualC++
and VisualBasic 6.0, VisualStudio 7.0, etc). I looked on both Microsoft.com
and MSDN.Microsoft.com and couldn't find anything pertinent.
Why would these be affected by the change?
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Nov 7 '06 #2
Hi,

I "believe" that this change will affect each OS, not the .NET Framework.
An update to to OS sometime prior to the DST change should take care of it.

Dick

--
Richard Grier, MVP
Hard & Software
Author of Visual Basic Programmer's Guide to Serial Communications, Fourth
Edition,
ISBN 1-890422-28-2 (391 pages, includes CD-ROM). July 2004, Revised March
2006.
See www.hardandsoftware.net for details and contact information.
Nov 7 '06 #3
Mattias Sjögren <ma********************@mvps.orgwrote:
Does anyone know what is planned for the different .NET versions
(1.0, 1.1 and 2.0) and older runtime environments (for example, VisualC++
and VisualBasic 6.0, VisualStudio 7.0, etc). I looked on both Microsoft..com
and MSDN.Microsoft.com and couldn't find anything pertinent.
Why would these be affected by the change?
All kinds of applications need to know when daylight savings time kicks
in - which is why there's a DaylightTime class in the framework. It'd
be rather a shame if it gave the wrong results...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 7 '06 #4
AFAIK has by instance in the USA the daylight saving not in every state or
county the same rules.

It can be changed every day, I assume that this is on more places in the
world.

It is measured in time only short ago that Brittain took the same rules for
that as the rest as Europe.
(Sorry I should say of course Europe took the same rules as Brittain)

Cor

"Jon Skeet [C# MVP]" <sk***@pobox.comschreef in bericht
news:MP************************@msnews.microsoft.c om...
Mattias Sjögren <ma********************@mvps.orgwrote:
Does anyone know what is planned for the different .NET versions
(1.0, 1.1 and 2.0) and older runtime environments (for example, VisualC++
and VisualBasic 6.0, VisualStudio 7.0, etc). I looked on both
Microsoft.com
and MSDN.Microsoft.com and couldn't find anything pertinent.

Why would these be affected by the change?
All kinds of applications need to know when daylight savings time kicks
in - which is why there's a DaylightTime class in the framework. It'd
be rather a shame if it gave the wrong results...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 8 '06 #5
>All kinds of applications need to know when daylight savings time kicks
>in - which is why there's a DaylightTime class in the framework. It'd
be rather a shame if it gave the wrong results...
Right, but don't you think the DaylightTime class gets its information
from the OS, so that patch would fix it as well?

This isn't the first time the DST changes, it happens all the time in
different countries.
Mattias

--
Mattias Sjögren [C# MVP] mattias @ mvps.org
http://www.msjogren.net/dotnet/ | http://www.dotnetinterop.com
Please reply only to the newsgroup.
Nov 8 '06 #6

Cor Ligthert [MVP] wrote:
AFAIK has by instance in the USA the daylight saving not in every state or
county the same rules.
That's correct. It wasn't even consistent within a state and the rules
have changed at least a half dozen times in the US since 1918. There
were long periods where states could define DST as well. What a mess.
Wikipedia has an excellent article on the topic.

http://en.wikipedia.org/wiki/Dayligh...#United_States

Nov 8 '06 #7
Cor Ligthert [MVP] <no************@planet.nlwrote:
AFAIK has by instance in the USA the daylight saving not in every state or
county the same rules.

It can be changed every day, I assume that this is on more places in the
world.
I believe in most places it can't be changed on a whim - and it's not
like it happens very often, IMO.
It is measured in time only short ago that Brittain took the same rules for
that as the rest as Europe.
(Sorry I should say of course Europe took the same rules as Brittain)
How long ago was that in software terms? I don't know when it happened,
but I suspect it has less of an impact than it would now...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 8 '06 #8
Mattias Sjögren <ma********************@mvps.orgwrote:
All kinds of applications need to know when daylight savings time kicks
in - which is why there's a DaylightTime class in the framework. It'd
be rather a shame if it gave the wrong results...
Right, but don't you think the DaylightTime class gets its information
from the OS, so that patch would fix it as well?
It might. It might not - certainly in a situation I'm working in we had
to replace the JRE to account for the difference. As MS have more
control over the OS that .NET is installed on, they may well be able to
rely on the OS - but I wouldn't be surprised if *some* change were
needed.
This isn't the first time the DST changes, it happens all the time in
different countries.
I would question "all the time" - I don't think it's that frequent an
occurrence. I know it happened earlier in the year in Australia, but I
don't think it's *that* common.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Nov 8 '06 #9
Jon,

In the rest of the EU it was not such a problem to decide.

http://en.wikipedia.org/wiki/British_Summer_Time

Cor

"Jon Skeet [C# MVP]" <sk***@pobox.comschreef in bericht
news:MP************************@msnews.microsoft.c om...
Cor Ligthert [MVP] <no************@planet.nlwrote:
>AFAIK has by instance in the USA the daylight saving not in every state
or
county the same rules.

It can be changed every day, I assume that this is on more places in the
world.

I believe in most places it can't be changed on a whim - and it's not
like it happens very often, IMO.
>It is measured in time only short ago that Brittain took the same rules
for
that as the rest as Europe.
(Sorry I should say of course Europe took the same rules as Brittain)

How long ago was that in software terms? I don't know when it happened,
but I suspect it has less of an impact than it would now...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Nov 9 '06 #10
Ah,

Before we get again a long thread it was in 2002

Cor

"Cor Ligthert [MVP]" <no************@planet.nlschreef in bericht
news:%2****************@TK2MSFTNGP03.phx.gbl...
Jon,

In the rest of the EU it was not such a problem to decide.

http://en.wikipedia.org/wiki/British_Summer_Time

Cor

"Jon Skeet [C# MVP]" <sk***@pobox.comschreef in bericht
news:MP************************@msnews.microsoft.c om...
>Cor Ligthert [MVP] <no************@planet.nlwrote:
>>AFAIK has by instance in the USA the daylight saving not in every state
or
county the same rules.

It can be changed every day, I assume that this is on more places in the
world.

I believe in most places it can't be changed on a whim - and it's not
like it happens very often, IMO.
>>It is measured in time only short ago that Brittain took the same rules
for
that as the rest as Europe.
(Sorry I should say of course Europe took the same rules as Brittain)

How long ago was that in software terms? I don't know when it happened,
but I suspect it has less of an impact than it would now...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too


Nov 9 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Daniel | last post by:
Is there a patch for congress new 2007 daylight savings time change? http://geography.about.com/cs/daylightsavings/a/dst.htm This could have economic impact like y2k did. Is there a patch for...
6
by: Daniel | last post by:
Do any microsoft buildtime dependancies C#/C/c++/VB/etc. need to be updated for the 2007 policy on daylight savings time? I know the OS needs to be updated but I care now about C libraries, .net...
6
by: sugapablo | last post by:
I have an old machine running Mandrake 9.2 and PHP 4.3.1 hosting several websites. With the coming changes to daylight savings time in March 2007, what are my options in correcting the current...
3
by: bernhard Hoyler | last post by:
Hi, I would like to determine whether at a certain time point in time the daylight savings time is in effect. This means such a logic should show that today (16-Nov-2007) no daylight savings...
27
by: RobG | last post by:
I was investigating a function to determine whether daylight saving was being observed on a particular date (given the platform's regional settings) and came across a suggestion at merlyn.com to...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.