Questions tagged [modeless]
98 questions
0
votes
0 answers
Why does a modal WPF window disable a modeless window with no common owner?
If the main WPF window creates a modeless window with no assigned owner, and then it creates a modal window, why does the modeless window get disabled? Here's a code snippet that illustrates the problem.
The xaml:

Dale Barnard
- 779
- 1
- 7
- 16
0
votes
1 answer
C# Pass Values from Modeless Form
I am currently in the process of changing my modal form to modeless. The modal form was at the beginning of a method and I utilized the values within the form in this method. Now that I'm changing it to modeless, I have it set to open the form, then…

Shannon Morris
- 43
- 1
- 7
0
votes
1 answer
TFS Opening the Resolve Conflicts window programmatically
I'm using a VS extension that has the option of merging changesets. This extension opens the 'Resolve conflicts' window if conflicts are detect, allowing me to choose 'Merge automatically' (disabled), 'Merge in merge tool', 'Take source, 'Take…

Asser Fahrenholz
- 21
- 3
0
votes
0 answers
I can't add dialog in a modeless box
I want to create a modeless box but can't add dialog or message in the box.
Right now this is what I have, the .Text is shown as the title in the top bar of the box.
Form popUP = new Form();
popUP.Text = "Title";
popUP.Show();
0
votes
1 answer
Show vs ShowDialog. Can Dialogs be hidden by the user?
In Windows Mobile, if I do a call to Show rather than ShowDialog I will get a modeless dialog box.
If that modeless dialog fills the whole screen, is there a way to switch out to a different screen? (Kind of like Alt + Tab in windows).
I need to…

Vaccano
- 78,325
- 149
- 468
- 850
0
votes
1 answer
PyQt4: Wait on modeless dialog
Is there a way of waiting on closure of a modeless dialog?
Here is an example application: I start some program which needs to do some startup stuff and also needs the user to log-in. Since the user logging in takes some time, I'd like to have the…

ehudson
- 205
- 3
- 6
0
votes
0 answers
Can't select text in HTA modeless dialog
Normally in an HTML file you can use the mouse to select and copy text or by pressing CTRL+A and CTRL+C. This even works in HTA programs on Windows systems.
However, I am unable to do this when I create a modeless dialog window using…

posfan12
- 2,541
- 8
- 35
- 57
0
votes
0 answers
Modeless JDialog box fails to display after a few attempts
I've created a class to display a modeless dialog box. I want to warn the user of something but I can not prevent them from accessing the application.
In the Test program below, the Dialog will only be created 3 times(same issue i see in my app),…

Trav
- 21
- 3
0
votes
1 answer
How to correctly pop a modeless dialog from console using MFC
I need to create a console application that has a main() function and pop a modeless dialog, so the console can still work in parallel to the modeless dialog (do other work, like communicating with the modeless dialog).
Whatever i tried, i could…

Vertilka
- 183
- 2
- 13
0
votes
1 answer
Form usable even when a modal dialog is above
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…

user253966
- 3
- 6
0
votes
1 answer
Userform showing when not wanted, not called for
im having some weird things happen with some code in excel
Private Sub CommandButton2_Click()
Dim thiswb As Workbook
Set thiswb = ActiveWorkbook
Call EnterDataToSS(thiswb)
Me.Hide
BeamNoFind.Show vbModal
End Sub
the called code basically…
user3709812
0
votes
1 answer
How to display a new modal window hiding the previous one?
Using tympanus.net modals (with greats animations) is easy to delete the backdrop div ()letting me interact with menu items behind my modal but I don't know how to display just one modal at time as when I open a new one…

mungle
- 30
- 2
- 9
0
votes
1 answer
How do I make a JMessageDialog not force the user to close it before switching panels in my GUI?
In my GUI's instructions panel, I have a message dialog appear (when a user clicks on a corresponding button with the instructions for decrypting a type of cipher. However, it forces the user to press "okay" (thus closing the dialog) before…

csmith
- 1
- 1
0
votes
0 answers
Can we disable or make a dialog box modal if it is modeless?
I have an application, which has a search button and a spreadsheet where the searched item is placed. Now the search button causes a "Search" dialog box to pop up which is modeless, hence meaning that one can still work on the spreadsheet. If one…
user1693086
0
votes
1 answer
MFC C++ in a Modeless Dialog Show a Modal one
I have a modeless dialog. When I try and do a .DoModal() from there, it shows the dialog, but it still allows you to interact with the modeless dialog.
This is how I create modeless dialog:
MyMainEditorWindow = new CMyMain(this);
…

Mary Ellen Bench
- 589
- 1
- 8
- 28