List of time zones

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Alexander Vasilevsky

    List of time zones

    Advise, please, how to fill drop down list all possible time zones?

    http://www.alvas.net - Audio tools for C# and VB.Net developers


  • Jeff Winn

    #2
    Re: List of time zones

    You can use the System.TimeZone Info class for that.

    using System;
    using System.Collecti ons.ObjectModel ;

    foreach (TimeZoneInfo timeZone in TimeZoneInfo.Ge tSystemTimeZone s()) {
    // Fill your dropdown instance with what you want to display for the
    time zone in here.
    }

    "Alexander Vasilevsky" <mail@alvas.net wrote in message
    news:g566h4$2q8 b$1@behemoth.vo lia.net...
    Advise, please, how to fill drop down list all possible time zones?
    >
    http://www.alvas.net - Audio tools for C# and VB.Net developers
    >
    >

    Comment

    Working...