Questions tagged [non-modal]
59 questions
1
vote
2 answers
how to check if a non-modal dialog is already launched
My application launches a non-modal dialog on a button click. If user clicks on that button again, I would like to do a check if that form is already running and wonder if its possible?

crazy novice
- 1,757
- 3
- 14
- 36
1
vote
1 answer
QDialog switch to non-modal after accept not redrawing
So, I'm not sure if the title is the best description, but it's what I came up with.
Here's the deal. I'm working on a PyQt app that has a sort of plugin system where you can just add some sub classes to a folder and the app finds them. These…

user2659205
- 157
- 1
- 1
- 7
1
vote
0 answers
Create jQuery Dialog on the fly
Currently I have working code that creates some select and checkbox objects and overlays these over the current document. However this is a bad solution and I need to make it a non modal dialog box instead so that it is easier to read and can be…

Byron Stuart
- 47
- 8
0
votes
1 answer
Display reports with non-modal messagebox
Am writing a VB.Net app written in VS2010. This displays some reports in several forms. (Am using Crystal Reports though this is incidental to the problem). The user needs to be able to check these, then confirm if he wishes to run the update…
user1258075
0
votes
1 answer
Popup's draggable Area of Movement Limited
In my application I am invoking a PopUp by
Popup pop = new Popup;
then i add this:: pop.child(page); where "page" is the instance of a XAML page which is of type ChildWindow.
Now when the popup shows up on my MainPage, it becomes Non-Modal just…

LetsKickSomeAss in .net
- 536
- 1
- 8
- 22
0
votes
1 answer
Custom modeless dialog not showing
I have to convert a modal dialog to a modeless one.
I made some changes already by referring to the Qt Documentation. I basically created two signals to detect if the dialog is accepted or rejected, and connected them using connect().
I tried to…

AayushGupta69
- 51
- 9
0
votes
1 answer
can not resize non modal html dialog setting style='resize:both' but works with modal dialogs
Using style='resize:both' on non modal dialogs has no effect.
Below is the code to test. Is this the expected behaviour od a bug ?
resize test

Heinz
- 239
- 1
- 2
- 8
0
votes
2 answers
Displaying hints via a status bar in a non-modal form
The canonical method of displaying hints in a status bar is via the following code:
Constructor TMyForm.Create;
begin
inherited create (nil);
...
Application.OnHint:= MyHint;
...
end;
procedure TMyForm.MyHint…

No'am Newman
- 6,395
- 5
- 38
- 50
0
votes
2 answers
How to show non modal window/alert in apps script?
I want to display some data while the script is running by inserting some 'alert' to pop up during process. For example i'm modifying a google sheet, reset range of cells, unmerge and merge, set Validation etc. and i put some alert on any specific…

andio
- 1,574
- 9
- 26
- 45
0
votes
1 answer
How can I make a Java print dialog stay on top or non-modal? (Linux)
If I click on the main JFrame, the Java print dialog is hidden and input is blocked. I tried switching from PrinterJob printDialog() to ServiceUI.printDialog(). I also tried ServiceUIFactory factory = printService.getServiceUIFactory() but that…
0
votes
1 answer
How to focus on main page input elment when there is a non modal dialog?
My case is under condition: The non modal dialog has input inside, and it doesn't close when clicking outside
When the non modal dialog is open, I cannot focus on input in main page. When I clicking on input in main page, the focus jumps to the…

Eli Chen
- 33
- 4
0
votes
1 answer
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?

SRNG
- 51
- 2
- 9
0
votes
1 answer
MFC dialog shows in task bar
I have an application that uses dialogs from two DLLs. The code for the dialogs in the two DLLs is almost identical:
Both dialogs have the same style in the RC file: DS_SETFONT |
DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU.
Both dialogs are…

AlastairG
- 4,119
- 5
- 26
- 41
0
votes
0 answers
wpf determine dialog show type?
I have a window in a WPF project that is used in a couple different places. Depending on the use I would like to be able to show it modal (ShowDialog()) or non modal (Show()). When a particular button is clicked on the UI it should fire an event…

sfaust
- 2,089
- 28
- 54
0
votes
1 answer
Custom modeless dialog class not visible
I want to make a custom non-modal dialog class with a label and a QDialogButtonBox. I have looked at a number of postings, but none seems really on point. My code is below. Two questions:
1. Why isn't the dialog class displaying anything?
2. Do…

SixHearts
- 5
- 3