timer i have two labels in C# windows Application and i want make it visilbe for once.
on form load :
label1.visible = true;
label2.visible.false;
and on timer tick event:
label1.visible.false;
label2.visivle = true;
now after it perform one tick it display another form. how to do it.
in my code it runs properly but where i load the new form.