Different timezones

  • Thread starter Thread starter H. Blijlevens
  • Start date Start date
H

H. Blijlevens

We're currently working on an application (VB.Net) that needs to keep track
of times in different timezones.
For instance, the application is run in Berlin and needs to display the
exact time in New York (considering daylight savings).
Does the framework contain some basic methods to support this functionality?

Thanks in advance!

H.
 
The framework does not have facilities to convert time. But you can use the toUTCtime to get the UTC time for any time zone you app is running in. Then the conversion to the other coordinates is up to you.
 
Thanks!

I was hoping for some extra functionality in the framework, but I guess I'll
have to do some converting myself.

H.


Anand said:
The framework does not have facilities to convert time. But you can use
the toUTCtime to get the UTC time for any time zone you app is running in.
Then the conversion to the other coordinates is up to you.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top