I would like to be able to show a non-modal form in an existing application. At the moment, I can do something like:
myform.ShowDialog(handleToApp);
but this will create a modal form that was born for the application, and that I'm really looking for something that is not modal, so when the form loses focus, it will not disrupt the control flow and does not pester the user that it is not closed.
Does anyone know how or can I do what I'm looking for?
source share