I have a large form and I want to load other forms in front of it.
At the moment I am using the .ShowDialog to bring them up, however when I do this I can't go back to the other windows without closing the new one.
The problem is that I want all of the sub forms to stay in front of the main form, and if I open the sub forms and then click back on the main form, the sub forms obviously disappear into the background.
Is there any way to allow for forms to be open and be forced to stay in front of the main form I have, without them being .ShowDialog?
At the moment I am using the .ShowDialog to bring them up, however when I do this I can't go back to the other windows without closing the new one.
The problem is that I want all of the sub forms to stay in front of the main form, and if I open the sub forms and then click back on the main form, the sub forms obviously disappear into the background.
Is there any way to allow for forms to be open and be forced to stay in front of the main form I have, without them being .ShowDialog?