combit List & Label 30 - .NET Help
combit.Reporting Namespace / TimeZoneInformation Class / Client Property


Client Property

This determines the time zone to be used for all conversions of date and time values for printing, exporting and the Designer functions. This is particularly important for distributed applications such as server/client applications or web applications, where data sources, applications and clients may be located on different systems in different time zones.

Syntax
'Declaration
 
Public Property Client As TimeZoneInfo
 
Remarks

The values for the possible time zones can be determined in the Windows registry under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones or with the help of System.TimeZoneInfo.GetSystemTimeZones();.

Example
...
// get all system time zones from current machine/process
ReadOnlyCollection<System.TimeZoneInfo> timeZones = TimeZoneInfo.GetSystemTimeZones();

//...

// find explicit time zone and define as client time zone for reporting
LL.TimeZoneInformation.Client = TimeZoneInfo.FindSystemTimeZoneById("W. Europe Standard Time");
...
Requirements

Platforms: Windows 10 (Version 21H2 - 23H2), Windows 11 (21H2 - 22H2), Windows Server 2016 - 2022
.NET: .NET Framework 4.8, .NET 6, .NET 8, .NET 9

See Also