I have a Dialog A and I want it to load a second dialog B which is modeless and stays along side A throughout. Dialog A may then launch a modal dialog C. But when C is present I want B to be usable. I would have fixed this with pretranslate message in A in a C++ application but what is the approach in C#.

link|improve this question
feedback

2 Answers

When you launch Dialog C, launch it using yourFormVariable.Show() instead of yourFormVariable.ShowDialog().

Form form1 = new Form();
Form form2 = new Form();
form1.Show();
form2.Show();

This will allow both forms to be active and usable by the user, whereas in the following code:

Form form1 = new Form();
Form form2 = new Form();
form1.Show();
form2.ShowDialog();

the user will have to close form2 before they can continue to use form1 again.

Note that there is no such thing as a modal dialog that allows the previous forms to be usable - a modal dialog by definition is one that the user has to interact with and close before continuing.

link|improve this answer
I am aware that making C modeless would work, but I need the other dialog to respond, it may have text that aids the user to use dialog C. In effect, if I wanted a custom help system that is a buddy window, how do I let the user work with it. I know that Windows uses a separate process to launch help and those wizards, but I believe there should be no technical block to making this possible within the same process - perhaps by changing the Window hierarchy of ownership/parentage. – user253966 Mar 23 '10 at 8:48
So you want Dialog A to be non-responsive when the user has Dialog C open, but you still want them to be able to interact with Dialog B? As I said a modal dialog will block all interaction with the application until that modal dialog is closed. The only way you could do this is to open Dialog C with Show(), then change Dialog A's Enabled property (so it disables all controls) when Dialog C is opened, then changes it back to Enabled when Dialog C is closed. – Andy Shellam Mar 23 '10 at 8:54
ok, sounds like a good idea. – user253966 Mar 23 '10 at 8:56
Hmmm, slight problem - when Dialog C is modeless, it can be lost when one interacts with B - with the best option being to show C in taskbar which does not seem right for what ought to be a modal dialog. – user253966 Mar 23 '10 at 9:35
stackoverflow.com/questions/1388408/… this suggests using hooks, but the solution is not clear – user253966 Mar 23 '10 at 9:43
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.