I am creating a windows form that hosts the WebBrowser control.
To create new windows from this form, I am using the following code:
browser.Form1 newWindow = new browser.Form1();
e.Equals(newWindow.axWebBrowser1.Application); // e is the event
newWindow.Show();
newWindow.Visible = true;
This works fine. But, if I close the parent or original form from which the
other windows are created, all the other windows are also getting closed.
My question is: How can I make sure that after closing the parent or
original form, the other windows are not closed?
Thanks,
Sathish