I currently have an app I am learning with. I design and redesign as I go. I am currently working with Time. The app currently has two timers that display current time local to client pc (As in not just my time) and UTC time.

Code:
    Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick

        If ComboBox1.Text = "Local" Then
            Clock1.ForeColor = Color.DimGray
...