private Thread ThreadCheck;
private Thread ThreadForm;
private MainForm mMainForm; private void LogoForm_Load(object sender, System.EventArgs e)
{
try
{
ThreadCheck = new Thread(new ThreadStart(SetLableInfo));
ThreadCheck.Start();
ThreadForm = new Thread(new ThreadStart(MainFormLoad));
ThreadForm.Start();

}
catch(Exception ex)
{
throw ex;
}
} private  void SetLableInfo()
{
this.lblLogo.Text ="";
for(int i=0;i< 100;i++)
{ int Temp = Convert.ToInt16(i%6);
if(Temp ==0)
{
this.lblLogo.Text =strStatic;
this.lblLogo.Refresh();
}
else
{
this.lblLogo.Text += strDot;
this.lblLogo.Refresh();
}
Thread.Sleep(1000);
}

}
private void MainFormLoad()
{

mMainForm = new MainForm();
                            mMainForm.Show();
                            //
                            //this.Hide();
}