Tagged Questions
The non-modal tag has no wiki summary.
5
votes
4answers
189 views
A window that behaves both modally and non-modally
I want to create a WPF window that behaves as a modal dialogue box while at the same time facilitating selected operations on certain other windows of the same application. An example of this ...
3
votes
3answers
1k views
How can I Prevent Shortcuts from Colliding/Interacting in Delphi?
I use the standard Cut, Copy, Paste actions on my Main Menu. They have the shortcuts Ctrl-X, Ctrl-C and Ctrl-V.
When I open a modal form, e.g. FindFilesForm.ShowModal, then all the shortcuts work ...
3
votes
2answers
800 views
Non-Modal Child Window That Allows Mainform To Be Drawn On Top - Delphi
In Delphi (2009 Pro) - I have a main form that can create non-modal child windows. I want whichever form has the focus to draw on top - even if it is the main window that has the focus.
2
votes
4answers
135 views
How to create a non-modal form but blocking?
Should sound weird, but this is just for my hobby. I would want a (custom) messagebox to pop up with a YesNo buttons which should ideally block the code. But I should be able to click on the parent ...
2
votes
1answer
232 views
dojo non-modal dialog
Is there a way to create a non-modal dialog window using dojo? jQuery UI supports both modal and non-modal dialog boxes. I am trying to convert a SilverLight application to HTML/javascript and ...
2
votes
3answers
433 views
delphi splash form doesn't fire timer events if shown non-modally
I have coded a splash form that fades in, shows for a while, then fades out. The fading is implemented with a timer which closes the form also. It works fine.
I was showing the form modally, but I ...
2
votes
4answers
2k views
WinForms programming - Modal and Non-Modal forms problem
I have a problem with modality of the forms under C#.NET. Let's say I have main form #0 (see the image below). This form represents main application form, where user can perform various operations. ...
2
votes
1answer
2k views
WPF: How to correctly implement a modal dialog on top a non-modal dialog?
In a WPF application I would like to implement the following behaviour which doesn't seem to work straightforward:
From the main window (Window1) the user opens a non-modal window (Window2), and that ...
2
votes
2answers
2k views
How do you make a non-modal topmost dialog that is only topmost in regards to the parent form in WinForms?
Thinking about this for an About dialog but I'm sure it's applicable in other places (say a find box)
Sorry if this is a dupe, but I couldn't find this or how to articulate the last part about it ...
1
vote
2answers
392 views
wait for a jdialog in non-modal mode
I have a JFrame and when the user presses a button is displayed an input jdialog. I need the jdialog to be in non-modal mode and once the user presses ok,
I want to do some action based on the input. ...
1
vote
1answer
427 views
How do you close a modal window from it's parent?
Is it possible to close a modal window from it's parent? It is a little hard even to try to do this. Basically, I am opening a non-modal window. From that non-modal window the user might some times ...
1
vote
3answers
271 views
Non-Modal view without NavigationController
I have an app built from the UITabBarController starter project. The first tab is part of the main.xib that contains the tab bar. I would like to slide a view up from the bottom on top of that tab's ...
1
vote
1answer
552 views
Toast versus Dialog boxes: which to use when?
The answer could be subjective. The answer could be intuition. And I guess the answer could be found from the traditional modal versus non-modal debates.
But in general how do you generally decide ...
0
votes
1answer
105 views
Click outside non-modal dialog to close
Per my previous research, I've been able to figure out how to trigger a live click event on the overlay around a dialog to close the dialog. However, that restricts further development of this dialog ...
0
votes
1answer
189 views
jquery jdialog non-modal
I am using sj:dialog to display some details of an user.
I need to make this into a non-modal window with minimize, maximize, close buttons.
Is it possible?
If not, then are there any alternatives?
0
votes
4answers
206 views
Non modal “status” form
At the beginning of a section of C# code that could take several seconds to complete, I'd like to display a non modal form with a label that just says, "Please wait..."
WaitForm myWaitForm = null;
...
0
votes
1answer
267 views
Delphi - How can I prevent the main form capturing keystrokes in a TMemo on another non-modal form?
I have an app that opens a non-modal form from the main form. The non-modal form has a TMemo on it. The main form menu uses "space" as one of its accelerator characters.
When the non-modal form is ...