Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
Hi @Simon Scott ,
Current time zone is cached, so you need to reset the cached value.
Here's the code you can refer to.
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
System.Globalization.CultureInfo.CurrentCulture.ClearCachedData()
Dim timeZone As System.TimeZone = TimeZone.CurrentTimeZone
Label3.Text = timeZone.StandardName
Label3.Refresh()
End Sub
Hope it could be helpful.
Best Regards,
Xingyu Zhao
*
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.