
Timezones - who can answer this
Quote:
> I would not ecxpect time zones to be a
> terribly visible feature that would be expected to "jump the tracks" and
get
> done earlier?
I think they would be very helpful when designing Internet applications.
Unless everyone switches to GMT, time conversions are going to be very
frequent.
--
Jonathan Allen
Quote:
> That is an opinion.
> But the priority of the first version was obviously to give the
> functionality of Win32 to the managed world. Future versions will
> undoubtably expand on it.... but I would not ecxpect time zones to be a
> terribly visible feature that would be expected to "jump the tracks" and
get
> done earlier?
> --
> MichKa
> Michael Kaplan
> (principal developer of the MSLU)
> Trigeminal Software, Inc. -- http://www.trigeminal.com/
> the book -- http://www.i18nWithVB.com/
> > There should have been a method that returns all the Time Zones that the
> > computer knows about. Just as it can return a list of Fonts or Printers.
> > --
> > Jonathan Allen
> > > Unfortunately, Windows and .NET only have a concept
> > > of one single, current system-wide time-zone...
> > > (= .NET internal 'CurrentSystemTimeZone' class)
> > > For WIN32:
> > > even the function
> > > SystemTimeToTzSpecificLocalTime()
> > > is not on Win9x, only on NT, and reverse
> > > TzSpecificLocalTimeToSystemTime()
> > > was just introduced for Windows XP!
> > > You may have to workaround:
> > > - get zone information (TZI) from registry
> > > (MS KB Q115231)
> > > - manualy add offsets to UTC times...
> > > (e.g. MS KB Q128126)
> > > also read the 'ClockRack' article by Charles Petzold:
> > > http://www.pcmag.com/article/0,2997,s%253D1478%2526a%253D4914,00.asp
> > > and java has (as for the new J#.NET)
> > > SimpleTimeZone class derived from TimeZone
> > > NETMaster
> > > http://www.cetus-links.org/oo_csharp.html
> > > > I need to convert times between various timezones.... however it
seems
> > like
> > > > all of the TimeZone functions only deal with the time zone of the
PC.
> > > > Why is the TimeZone class abstract? Do i have to basically make my
> own
> > > > class and inherit from TimeZone to implement the functionality I
need?