private void timer1_Tick(object sender, EventArgs e){ switch (this.Text) { case "": this.Text += "D"; break; case "D": this.Text += "e"; break; case "De": this.Text += "l"; break; case "Del": this.Text += "n"; break; case "Deln": this.Text += "i"; break; case "Delni": this.Text += "a"; break; case "Delnia": this.Text += ""; break; }}