im trying to open one form while closing another form with a link label.
what im using is this:
private void linkLabel1_Link Clicked(object sender, LinkLabelLinkCl ickedEventArgs e)
{
Form2 frm = new Form2();
frm.Show();
this.close();
}
but it closes both forms and exiting the debug
plz help me! T_T
what im using is this:
private void linkLabel1_Link Clicked(object sender, LinkLabelLinkCl ickedEventArgs e)
{
Form2 frm = new Form2();
frm.Show();
this.close();
}
but it closes both forms and exiting the debug
plz help me! T_T
Comment