G
Guest
When i load up my application I want to Hide the start form and open up a
preview form,
Im trying with
private void Form1_Load(object sender, System.EventArgs e)
{
this.Hide();
Form form2 = new Form2();
form2.Show();
}
but its not hiding the first form,
what am i doing wrong?
but
preview form,
Im trying with
private void Form1_Load(object sender, System.EventArgs e)
{
this.Hide();
Form form2 = new Form2();
form2.Show();
}
but its not hiding the first form,
what am i doing wrong?
but