Appointment World Times – Outlook 2010 Add in
Appointment World Times – Outlook 2010 Add in
After some bad experience scheduling meetings with people in different time zones I decide to write a simple add-in for outlook that will allow me to see times differences while writing the appointment.
If you have to schedule meetings around the world you probably familiar with the http://www.timeanddate.com/worldclock/ and several more that will help you see the time and date difference between your location the the other attendees.
Download Here
The code is simple as you can see below it takes appointment times and convert against the TimeZoneInfo collection.
foreach (TimeZoneInfo zone in zones)
{ DateTimeOffset off_s = new DateTimeOffset(start).ToOffset(zone.BaseUtcOffset); DateTimeOffset off_e = new DateTimeOffset(end).ToOffset(zone.BaseUtcOffset);
}
Installing and Using Appointment World Times Add in
1. Download and Install the VSTO package – Download Here
2. Open Outlook and create new appointment, you will notice a new Button on the right upper corner called – “World Times”.
3. After click the button you will see new panel on the right side with all world time zones.

4. You can use the search box to easily find the desire location to compare.

5. Or you can define a set of zones you wish to see.

Download Here
Enjoy