System.ObjectDisposedException
Hi,
I am facing the "System.ObjectDisposedException" when form1 calls form2.
I have created a form (form1). when I click on the button it shd call another form (form2).
private void enter_Click(object sender, System.EventArgs e)
{
frm.Show();
}
This is showing the form2. But when I click again on the button, its showing the following error..
Additional information: Cannot access a disposed object named "Form2".
Unhandled Exception: System.ObjectDisposedException: Cannot access a disposed object named "Form2".
Object name: "Form2".
Pl suggest.
Cheers
Rajesh