Hi,
show this example:
public partial class FormWithTimer : Form
{
Timer timer = new Timer();
public FormWithTimer()
{
InitializeComponent();
timer.Tick += new EventHandler(timer_Tick);
timer.Interval = 1;
timer.Enabled = true;
}
void timer_Tick(object sender, EventArgs e)
{
}
}