Tagged Questions
The showdialog tag has no wiki summary.
11
votes
4answers
7k views
Is it possible to use ShowDialog without blocking all forms?
I hope I can explain this clearly enough. I have my main form (A) and it opens 1 child form (B) using form.Show() and a second child form (C) using form.Show(). Now I want child form B to open a form ...
8
votes
7answers
2k views
What's wrong with my cross-thread call in Windows Forms?
I encounter a problem with a Windows Forms application.
A form must be displayed from another thread. So in the form class, I have the following code:
private delegate void DisplayDialogCallback();
...
7
votes
2answers
2k views
When would ShowDialog() return null?
WPF's Window.ShowDialog method returns a nullable boolean. So does CommonDialog.ShowDialog.
Now, I understand cases where these would return false (user clicked Cancel or pressed Esc), and when they ...
4
votes
2answers
332 views
ShowDialog on MEF Component Only Works Once
I created a WPF Window and made it a MEF Export.
I can do a ShowDialog once on the MEF Import but the second time it aborts because the MEF component was closed by the first ShowDialog.
What can be ...
4
votes
3answers
901 views
WPF - Force ShowDialog to return
How can I force ShowDialog to return from a background thread?
I have a WPF application built on top of a C++/CLR framework which is listening to messages sent by the framework. One particular ...
4
votes
3answers
1k views
WPF ShowDialog and ElementHost
is it possible to display a Modal Window from a WPF User Control, that is a child of an ElementHost, and set the owner/parent of the Modal Window to the containing Form control?
I'm guessing you ...
4
votes
1answer
2k views
WPF ShowDialog returns null immediately on second call
I think this is a bug in the WPF framework, without going into depths of my program and why I am doing what I am doing, I wrote a simple test application to prove my theory.
Can this issue be ...
3
votes
2answers
70 views
Which is a better way to call Form.ShowDialog()?
Which is a better way to show a modal dialog?
form1 frm=new form1();
frm.showDialog()
or
(new form1()).showDialog();
3
votes
3answers
282 views
Looking for an Elegant “Dont Show Me This Dialog Again” Dialog in C#
I've been looking for a dialog with a checkbox "Don's show me this dialog again" in C#.
I googled and search a lot, but I just could not find an elegant solution.
The dialog should work as similar ...
3
votes
1answer
852 views
WPF: Should I manually call Close on windows opened by ShowDialog method?
The thing is that WPF Window doesn't implement IDisposable interface which led me to believe, that I don't have to manually dispose of it when I open it by calling ShowDialog() but the first comment ...
2
votes
1answer
137 views
Unexpected behaviour of System.Windows.Window.ShowDialog() when no other windows are open. Any idea why?
I picked up on this (with some effort) when my WPF MVVM application tried to show two consecutive error dialog windows before the main window was launched: After OKing the first window, the ...
2
votes
1answer
141 views
Event queue not working properly winforms
Suppose a main form A and a modal dialog B.
I launch B from a thread (using invoke) as a modal dialog. The dialog is correctly shown and it is launched using ShowDialog(parent), where parent is form ...
2
votes
3answers
453 views
Switching between Forms in C#
When the autogenerated code for my program starts, it calls
Application.Run(new Form1());
and starts Form1. I have another form I'd like to switch to and close Form1 at the same time. The problem ...
2
votes
4answers
297 views
C#: Why doesn't ShowDialog().ToString() return expected String?
labelTotal holds the value of class Keypad (C# WinForms).
ToString has been overriden to return labelTotal.Text.
namespace Gui3
{
public partial class Keypad : Form
{
public Keypad()
...
2
votes
2answers
869 views
C#/WPF, how to make a window (created with Window.ShowDialog()) title bar blink when clicking its parent window (like MessageBox does)?
I'm trying to create a custom MessageBox by using a WPF Window that is called with ShowDialog().
So far, I've managed to implement everything, except for one thing.
As you know, when you use ...
2
votes
2answers
2k views
How to check if dialog is displayed or display multiple dialogs of the same type?
I'm managing dialogs by showDialog/dismissDialog/removeDialog.
I want to:
Display several dialogs in kind of a stack:
a) First dialog is shown using showDialog(DIALOG_TYPE)
b) Next dialogs are ...
2
votes
1answer
3k views
Upgraded to Silverlight 4 cause System.Security.SecurityException
Trying to open a file dialog but I get an exception when calling ShowDialog. This pice of code have always worked fine but I think when I upgrade to Silverlight 4 it caused some problem.
Code:
var ...
2
votes
1answer
771 views
Windows Forms and ShowDialog problem
I have a borderless Windows Forms application.
The main window creates other forms (simple dialogs where I can click yes or no) with ShowDialog().
Every created dialog is not visible in the taskbar, ...
2
votes
2answers
10k views
How to show another window from mainwindow in QT
Platform: QT, Windows XP
I am new to Qt. I want to show another window(what to do to open it as dialog) from mainwindow. I did "add New Item ->Qt Designer Form Class", named it say MyWindow. But how ...
2
votes
2answers
88 views
How to Link Different Form?
I got great help in my first question n hopefully someone will tell me or refer me to an earlier question about this topic.
I want to link different forms like I click on a button on first one and it ...
1
vote
1answer
73 views
Waiting on form return vb.net
What is the proper way to call up a form and wait until it recieves a replay before moving onto the next code step?
Example code is:
Public isLogedIn As Boolean = False
Private Sub ...
1
vote
2answers
104 views
Transparent Background and No Buttons When Customizing Content of an AlertDialog on onPrepareDialog on Android
I am having some difficulties to update the content of an AlertDialog on the onPrepareDialog method.
I am setting the content of the AlertDialog, but the dialog comes to the screen with no buttons ...
1
vote
1answer
232 views
showDialog() managing two consecutive dialogs, rotation event and screen saver / HOME button
Has anyone managed to make dialogs which can handle all of the following requirements:
Be preserved during rotation changes (the android:configChanges attribute will not be used)
Be preserved ...
1
vote
2answers
54 views
Dialog does not open when called shortly after being dismissed
In my app, the user logs in with a custom made login dialog. The user can confirm and exit the dialog in two ways:
Press the Enter/Done button in the password box.
Press the OK button.
When the ...
1
vote
2answers
81 views
How to forbid users to close the form? (MS VS C# 2010) [closed]
Possible Duplicate:
How to Disable Alt + F4 closing form?
Help me pls.
How to make a modal form, that closes only from program code.
I want to prevent form closing when user presses ...
1
vote
2answers
250 views
DialogResult problem in wpf
I have a window that I open a few times as a ShowDialog.
Every time I open it I use the new keyword
in the first time i did:
var myWindow = new MyWindow();
myWindow.ShowDialog();
second time I ...
1
vote
2answers
884 views
WPF and ShowDialog()
I am using Window.ShowDialog() to open a modal window in my WPF (MVVM) application, but it lets me navigate to other windows using the Windows taskbar (Windows 7).
Consider this:
I have 3 non-modal ...
1
vote
2answers
606 views
C# thread and ShowDialog problem
ProgressForm Class:
public partial class ProgressForm : Form
{
public int prc = 0, sz;
MainForm mf;
public ProgressForm(MainForm MF)
{
...
1
vote
3answers
322 views
ShowDialog() memory leak workaround
In my company's enterprise solution, I am going through and cleaning out as many memory leaks as I can.
We have a BaseCaptureForm which is inherited by many other forms (for example, ...
1
vote
2answers
486 views
AlertDialog in android 2.1
I create and show my dialog in next way:
showDialog(1); // Logcat say me that mistake is here.
protected Dialog onCreateDialog(int id) {
switch (id) {
case 1:{
...
1
vote
1answer
203 views
Is it safe to show multiple dialogs in WPF?
Surprisingly one can show more than one dialog at a time by putting the ShowDialog() call on the Dispatcher:
uiDispatcher.BeginInvoke(new Func<bool?>(myWindow.ShowDialog));
How come this ...
1
vote
2answers
783 views
java.lang.NoSuchMethodError on Activity.showDialog (int, Bundle)?
Here is what LogCat says:
01-21 17:20:06.057: ERROR/AndroidRuntime(27463): java.lang.NoSuchMethodError: com.mohit.geo2do.activities.TasksList.showDialog
01-21 17:20:06.057: ...
1
vote
1answer
902 views
Is it possible to use ShowDialog from MdiChildForm without blocking all others MdiChildForms and MdiParent?
I need to open modal form (frmD) from MdiChild (frmB) form without blocking main form (frmA) and all others opened MdiChild forms (frmC). Then i switch to frmC the frmD is hidden.
This is the similar ...
1
vote
1answer
1k views
Android/Java: showDialog with arguments?
Javadoc says:
void android.app.Activity.showDialog(int id)
public final void showDialog (int id)
Since: API Level 1 Simple version of
showDialog(int, Bundle) that does not
take any ...
1
vote
2answers
345 views
Strange behavior on ShowDialog in WPF
I create separate Window, design it with XAML and when I invoke ShowDialog from main form it seems like my dialog (Window) blinks once and then shows itself. Is it a common behavior? I didn't notice ...
1
vote
2answers
564 views
Form not refreshing after ShowDialog (Compact Framework)
I'm having a weird issue with form painting in the Compact Framework. I have a login dialog that is basically a small form that is opened on top of another using ShowDialog. When a card is swiped, the ...
1
vote
1answer
821 views
Application crashes while doing AlertDialog.Builder create() method - Android
I am testing my application on an LG Eve phone. I have an application that tries to download something from the web, and when it throws an exception, it is supposed to launch an alertdialog saying ...
1
vote
1answer
267 views
Winforms application with no main form - dialog not shown on top
I have a winforms application that doesn't really have a main form - it's just a simple file handling tool so it doesn't really need one.
When the application starts, first an OpenFileDialog is used ...
1
vote
2answers
604 views
How to check whether the form has any ShowDialog() forms open?
I have a form MainForm with several properties/methods that are accessed from another thread.
At some point I might open a form AuxForm with ShowDialog() and then while that modal form is open, the ...
1
vote
3answers
580 views
ShowDialog() while another form is visible through ShowDialog() as well, closes both?
I have the following situation:
ParentForm which opens WelcomeForm with ShowDialog.
WelcomeForm contains a Button which opens NewProjectForm with ShowDialog
When the user hits OK on NewProjectForm, ...
1
vote
5answers
2k views
Can I set ShowDialog() to not be topmost?
Is there a way I can set a ShowDialog() to not be topmost? I've looked at all the related SO questions, and none quite matched my situation.
What I do is open a new WinForm from a datagridview button ...
1
vote
2answers
849 views
How to achieve modal dialogs from NotifyIcon context menu?
I've got a shell tray icon with an attached context menu. The problem I'm having is that calling ShowDialog() from a context menu Clicked handler does not result in a modal dialog.
It's easy to ...
1
vote
1answer
344 views
ShowDialog, PropertyGrid and Timer problem
I have a strange bug, please, let me know if you have any clues about the reason.
I have a Timer (System.Windows.Forms.Timer) on my main form, which fires some updates, which also eventually update ...
1
vote
2answers
3k views
How to correctly ShowDialog() from inside an MDIChild form?
I have an MDIChild form that needs to show a dialog. I'm currently doing it like this from inside the mdichild form...
f.ShowDialog(Me)
Should I be using f.ShowDialog(mdiparent)?
What is the ...
1
vote
1answer
2k views
WPF Routed Commands and ShowDialog Windows
I was wondering how a window opened through ShowDialog is treated in the Visual Tree.
For example, Window A opens Window B through a ShowDialog. When firing a routed command on Window B, Window A ...
0
votes
4answers
46 views
Make installation dialog become topmost
I have an installer for my C# project, which requires the user to enter a license before continuing with the install. I get the license from the user by instantiating a form and then calling ...
0
votes
0answers
104 views
Call showDialog inside AsyncTask's onPostExecute() while on application is on background
I have an AsyncTask which loads some data into my application. After it finishes loading, it goes to onPostExecute and calls showDialog to display the result of my transaction. I have no problem ...
0
votes
1answer
57 views
showDialog after animation android
I created an animation that simulates an explosion: a "booom" image with this animation:
explosion.xml HyperspaceExplosion on Activity
<set ...
0
votes
1answer
196 views
Remove 'Webpage Dialog' from 'showModalDialog' window using jQuery or javascript
Somewhere in page, I use
onclick="window.showModalDialog("http://rauf-thecoder.blogspot.com/");" .
It will show the following.
How can I remove the Webpage Dialog text from the title bar :( I am ...
0
votes
1answer
30 views
Show a new child window from another child window but center it on the parent window
I have a winforms app with a main form (fMain) and two child forms (fLogin and fAdmin). fLogin is displayed using this code which is in a button click event handler for a button on the main form:
// ...