Hi all,
I'm writing a simple stop watch program, and I've come across an issue. I want the name in the taskbar to show whatever the current count on the timer is.
Private Sub Timer1_Tick(ByV al sender As Object, _
ByVal e As System.EventArg s) Handles Timer1.Tick
Me.Text = (Now.TimeOfDay - start).ToString
End Sub
This works only if I continue to click on the form itself. Otherwise, the taskbar name does not update.
Any suggestions?
I'm writing a simple stop watch program, and I've come across an issue. I want the name in the taskbar to show whatever the current count on the timer is.
Private Sub Timer1_Tick(ByV al sender As Object, _
ByVal e As System.EventArg s) Handles Timer1.Tick
Me.Text = (Now.TimeOfDay - start).ToString
End Sub
This works only if I continue to click on the form itself. Otherwise, the taskbar name does not update.
Any suggestions?
Comment