Click to See Complete Forum and Search --> : Displaying the current time


MonaVohra
03-20-2007, 11:03 PM
i am able to display the time using the following:

Timer2.Start()
ToolStripStatusLabel1.Text = System.DateTime.Now()

However, i want the time to move, and not just be stuck at one particular time. any ideas??

TwoFaced
03-20-2007, 11:39 PM
You need to update the time in the timers tick event. Also set the timers interval for 1000 ms (1 second) or higher. Anything faster is pointless.