D
Dom
In my program, the user can create a non-modal form (Is that the right
phrase? I mean form.Show, not form.ShowDialog). This is important,
because the user must go back and forth between the main and non-modal
window.
The user can "X" out of the non-modal form. I will know that the form
is not present by looking at form.IsDisposed. But let's say it is
Disposed. How do I get it back? Do I just do a frmNonModal f = new
FrmNonModal () again? If I can look at "IsDisposed" then I assume the
form is still present somewhere on the heap, and I don't want to get
extra copies out there.
Dom
phrase? I mean form.Show, not form.ShowDialog). This is important,
because the user must go back and forth between the main and non-modal
window.
The user can "X" out of the non-modal form. I will know that the form
is not present by looking at form.IsDisposed. But let's say it is
Disposed. How do I get it back? Do I just do a frmNonModal f = new
FrmNonModal () again? If I can look at "IsDisposed" then I assume the
form is still present somewhere on the heap, and I don't want to get
extra copies out there.
Dom