You'll need to create a timer. With visual studio winforms you can just drag and drop it from the toolbox. Otherwise add something like: System.Windows.Forms.Timer timer1 = new System.Windows.Forms.Timer(); and timer1.Tick += new EventHandler(timer1_Tick); before the timer2.Start()