I have this problem:
I have a vb.net class (visual studio 2010) :
....
Private nowTime As String
....
Protected Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
nowTime = My.Computer.Clock.LocalTime.ToLongTimeString
....
End Sub
How can I get the first value of "nowTime" String variable after having the Timer enabled for any interval of time?
Thanks in advance!