ابتدا یک تایمر به فرم اضافه کنید و مقدار Enable را True کنید
سپس مقدار Text فرم رو خالی کنید
و فرم رو Right to Left کنید
کدهای زیر هم برای تایمر هست
private void timer1_Tick(object sender, EventArgs e)
{
switch (this.Text)
{
case "":
this.Text += "g";
break;
case "g":
this.Text += "o";
break;
case "go":
this.Text += "n";
break;
case "gon":
this.Text += "b";
break;
case "gonb":
this.Text += "a";
break;
case "gonba":
this.Text += "d";
break;
case "gonbad":
this.Text += "";
break;
}
}