Hi guys, im not well experienxed please help, i want to code a digital running time with the colon dots flickering to show that the time is running anyone can offer help will be very usefull.
// init a Timer class
Timer aClock = new Timer();
// install an event
aClock.Tick += new EventHandler(WhenTheClockTicks);
// let it tick every second
aClock.Interval = 1000;
// start the clock
aClock.Start();
private void WhenTheClockTicks(object sender, EventArgs ea)
{
// You will get here every second, so do what you have to do
}