I would like to be able to show a non-modal form in an already existing application. At the moment I can do something like:
myform.ShowDialog(handleToApp);
but that will create a modal form parented to the application and what I'm really looking for something that isn't modal so when the form loses focus it won't break the flow of control and pester the user about not being closed.
Does anyone know how or if I can do what I'm looking for?