I'm trying to show UTC and local time in a 12 and 24 hour format. Im using the following code:
Private Sub Timer1_Timer()
GetSystemTime zt
txt12.Text = Right(DateAdd("h", -5, Format(zt.wHour, "00") & ":" & Format(zt.wMinute, "00") & ":" & Format(zt.wSecond, "00")), 11)
txt24.Text =...