I take it that that code block is inside the timers elapsed event and so should be something like this
switch(count)
case 0:
Form1.Show();
tmrNote.Interval = 3;
count +=1;
break;
case 1:
Form2.Show();
tmrNote.Interval = 5;
count +=1;
break;
case 2:
Form3.Show();
tmrNote.Interval = 10;
count +=1;
break;
case 3:
Form4.Show();
tmrNote.Stop;
break;
This is really pseudo code, but you should get the idea.
Hope this helps.