private void timer1_Tick(object sender, EventArgs e)
{
foreach (char ch in textChar)
{
System.Threading.Thread.Sleep(10);
textBox1.Text += ch;
AboutBox1_Load(sender, e);
}
}
}