articles

Home / DeveloperSection / Articles / Timer Control in C#.Net

Timer Control in C#.Net

Anonymous User12238 24-Jan-2011

The Timer Control plays an important rolein the development of programs both Client side and Server side development as well as in Windows Services. With the help of Timer Control we can raise events at a specific interval of time without the interaction of another thread.

How to use Timer Control

Drag and drop Timer control from toolbox on the window Form.

Timer Control in C#.Net

Timer Control in C#.Net

Code:
private void frmTimer_Load(object sender, EventArgs e)
{
            //After 5000 milisecond time will update
            timer1.Interval = 5000;
}
private void timer1_Tick(object sender, EventArgs e)
{
            //Current time will show in label
            label1.Text= DateTime.Now.ToLongTimeString();   
}

Timer Control in C#.Net

Time will update continuously after every 5000 millisecond.

Timer Control in C#.Net

Timer Properties

Interval:   Set the interval at which to raise the Elapsed event. 

Enabled:  Set a value indicating whether the Timer should raise the Elapsed event.  By default it set to false.



Updated 04-Mar-2020
I am a content writter !

Leave Comment

Comments

Liked By