I have code like this which runs fine on windows 7...
TimeZoneInfo _timeZoneInfo = TimeZoneInfo.Local;
It doesn't work on XP SP3. The error given is...
A first chance exception of type 'System.EntryPointNotFoundException' occurred in System.Core.dll
Additional information: Unable to find an entry point named 'GetDynamicTimeZoneInformation' in DLL 'kernel32.dll'.
Looking at the help for the function GetDynamicTimeZoneInformation I see that it's only available on vista+
Any ideas?