I want to show a Form called TTT
so I tried this:
public static TTT ttt_local = new TTT();
private void button1_Click(object sender, EventArgs e)
{
ttt_local.Show();
}
Then I want to close the Form from inside so ttt_local
closes itself when a button in ttt_local
is pressed. That works but if I want to reopen ttt_local
I get an ObjectDisposedException
. Can someone help me please?