Hi,
i am created a form it wont shows the login form.still it was executing that form only.please do the needful.
private void timer1_Tick(object sender, EventArgs e)
{
int d;
for (d = 0; d <= 100; d++)
progressBar1.Value = d;
this.Visible = false;
AuthenticationForm f = new AuthenticationForm();
f.Show();
timer1.Enabled = false;
}
Best,
Sudheep.