System.ObjectDisposedException: 'Cannot access a disposed object.
How to fix this error.
Form2 frm2Obj;
private void button1_Click(object sender, EventArgs e)
{
if (frm2Obj is null)
{
frm2Obj = new Form2();
frm2Obj.Show();
}
else
frm2Obj.Show();
}
Rajanikant HawaldarPosted Nov 25, 2020, 7:54 AM
PatelPosted Nov 25, 2020, 7:59 AM