G
Guest
In Windows Forms, I need to spin off a form (say a debugInfoWindow) which will not close even if the main form / application closes.
This was achieved in VB6 by placing that form in an inproc server Exe and opening it with a load library / createobject. ( this also allowed data transfer between the two forms.)
How this can be done in .Net ? Guess creating a new AppDomain and hosting the form's assembly there is the right direction. but still it gets closed when the main window is closed.
This was achieved in VB6 by placing that form in an inproc server Exe and opening it with a load library / createobject. ( this also allowed data transfer between the two forms.)
How this can be done in .Net ? Guess creating a new AppDomain and hosting the form's assembly there is the right direction. but still it gets closed when the main window is closed.