The dialogresult tag has no wiki summary.
1
vote
4answers
79 views
Visual Studio c# DialogResult doesn't seem to work
I'm using visual studio 2010
frmMain has a "Register" button which calls another form "newReg"
this is the code for the button in frmMain that calls the second form. The problem is that the ...
0
votes
0answers
10 views
Failure to run procedure from a dialog result
This was working for me just fine earlier but now if wont clear everything out. It does not run the result for ClearDialogResult = Ok. My NewOrderButton works properly.
If OkDialogResult = ...
1
vote
1answer
73 views
Why is Dialogresult nil?
This never happened to me before.
I do have System.Windows.Forms namespace under uses clause and I am able to use DialogResult's properties. Look at the code below. It's where the problem is in my ...
0
votes
0answers
103 views
custom buttons on dialogresult
Is there a possibility to customize the buttons on a dialogbox?
I'll explain better:
I don't want to customize the result of my buttons but only the text shown on them. For example I would like to ...
0
votes
2answers
2k views
MessageBox & Dialogs on XNA (C#)
I'm having the following code as part of my XNA game:
private void gameOver()
{
if (!m_IsGameOver)
{
string message = String.Format("GAME OVER!!!{0}Your score is: ...
2
votes
2answers
1k views
Caliburn Micro: DialogResult
I can't find a solution for the following problem:
I open a Dialog with the WindowManager from caliburn micro:
public void UserNew()
{
this._windowManager.ShowDialog(new ...
1
vote
4answers
747 views
Application Close on DialogResult
I have a C# GUI application. When the user clicks on the red 'X' (for closing the app) I want to show a message and ask if he really wants to close it.
I found a solution:
DialogResult ...
0
votes
1answer
139 views
Get the result of a PrintDialog
Okay, in my program I am showing a printDialog and I want to be able to know if the user clicks the print button, or the cancel button. In all the examples online that I've seen, the printDialogs have ...
0
votes
2answers
289 views
Keeping the parent DialogButton open after the child DialogButton is closed
I'm having a problem in keeping the Parent Form to be opened till I close after using ShowDialog() .
I've been trying regarding this but couldn't get. I think there is something simple that I might ...
0
votes
4answers
413 views
Catching MessageBox result
I'm trying to get the user to confirm if they want to delete a product using a MessageBox and catching its result. This is my code:
// Confirm if the user really wants to delete the product
...
-1
votes
3answers
204 views
Trouble with Form.DialogResult
private void mnuCustomerAdd_Click(object sender, EventArgs e)
{
CustomerForm frmCust = new CustomerForm("Add A New Customer");
int index = lstCustomers.SelectedIndex;
if ...
0
votes
2answers
1k views
Windows Forms DialogResult
in the following code I want to get the dialog result of a Form but it's not saved to my variable... why?
My code:
public void xyz() {
var dialogResult = new DialogResult();
if ...
0
votes
1answer
234 views
DialogResult handling
I have a question about accessing dialogdata from wpf/ I have a ProgressDialog :System.Windows.Window
And I am calling it in OnButtonClick like this:
void OnButtonClick(object sender, ...
-2
votes
2answers
285 views
How to loop the dialogresult
Form1 frm = new Form1();
frm1.ShowDialog();
I use this to create new form to do some stuff(not important), and then after i'm done with the form i display dialogresult to open that same form again.
...
0
votes
2answers
867 views
Why does ShowDialog always return DialogResult.Cancel?
I have a custom made dialog winform. On it I have a label, textbox and 2 buttons (OK and Cancel). It also declares and defines overloaded execute methods for passing different parameter list.
Dialog ...
0
votes
1answer
511 views
Pause timer-based program at MessageBox.Show()
I have a MessageBox.Show event that I want to also prevents timer-based methods from running while the MessageBox remains open.
Here is my code (Changes the value in a file location on a network ...
3
votes
2answers
986 views
In VB6 is there something similar to DialogResult from a dialog?
I have a VB6 form with buttons with the text 'Continue' and 'Cancel'. I want to check which one was clicked. In C# every form has a dialog result and I could set it before exiting the form depending ...
4
votes
3answers
3k views
DialogResult that doesn't close the form?
I have a form Form1 from which I display Form2 as a modal form. From Form2 I do all sort of editing and deleting of different set of values which should be reflected in Form1 after closing Form2. So ...
1
vote
2answers
1k 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
1answer
1k views
Bind a views DialogResult to a ViewModels property?
I am relatively new to WPF, XAML and Data-bindings. I have a view (Window) and a view-model.
I have tried to implement the MVVM pattern which means neither the view nor the view-model hold a ...
0
votes
2answers
1k views
Close form on messagebox answer trouble
I am trying to use this code to close a form on a specific answer of a message box. I keep receiving an error saying that neither Yes nor No belong to DialogResult::. I basically copied this code ...
7
votes
6answers
1k views
Cannot use DialogResult
I tried to use DialogResult to check an Messagebox's YesNoCancel. I'm using the following code which I don't see any problem with:
DialogResult dlgResult = MessageBox.Show(
"Save changes before ...
3
votes
2answers
3k views
DialogResult can be set only after Window is created and shown as dialog
I have a main WPF window, mywindow.showDialog
when a button is clicked on the window, a command is executed
let's say the command is SendToTableCommand
protected virtual void ...
3
votes
2answers
861 views
How to code a switch statement to test DialogResult and provide fall through logic
I'm getting strange results testing the return value from a function. This code is inside a for loop:
DialogResult result = EvalReturnFromWS(returnMsg);
switch (result)
{
case ...
1
vote
6answers
3k views
User Control Buttons to Close a Dialog Box
I have created a User Control in my application that has a textbox and then 2 buttons on it. One button is to Add data to the DB from the textbox and the second Cancels the action. This User Control ...
0
votes
1answer
503 views
Can I use dialogs and DialogResult on a UserControl with WPF?
I've a UserControl and I need to get input from a dialog. However, when I try to do this:
AddPassword addPassword = new AddPassword();
if(addPassword.ShowDialog() == == ...
0
votes
4answers
201 views
Return to the first dialog
I have a WinForm that is used as a Dialog with just OK and Cancel buttons. So:
Dim sr As New SlideRangeDialog
Dim dr As Windows.Forms.DialogResult
dr = sr.ShowDialog
I have an If/Then to see if the ...
2
votes
4answers
5k views
Is it possible to overload the ShowDialog method for forms and return a different result?
EDIT: This method actually works great and I asked it then found the solution later. I added the correct call in the overloaded ShowDialog() method (it's not exacly an overload, or even an override, ...
4
votes
1answer
1k views
.NET Winform Custom Form - Needs to return DialogResult or somehow prevent asynchronous events
I have a form that calls a custom child form. The child form is basically a popup box that gets some user data.
I want the Parent form to process information returned by the Child form.
The problem ...
1
vote
1answer
267 views
when dialog result for form get return
hi i have on object (serverconnection from sqlserver Managament object ) i need send this object to other form to configure connection option and connect so object return but when i send this object ...
40
votes
4answers
78k views
Messagebox with “Yes”, “No” and dialogresult?
I want to make simple Y/N messagebox but I think it is nonsense to design a form for that. I thought I can use MessageBox, add buttons etc. It is simple but since there is no dialog result, I don't ...
7
votes
4answers
6k views
Where is Button.DialogResult in WPF?
In System.Windows.Forms.Button there is a property DialogResult, where is this property in the System.Windows.Controls.Button (WPF)?
14
votes
5answers
5k views
Why is DialogResult a nullable bool in WPF?
Can anyone think of a good explanation for the fact that result of a dialog is a nullable bool in WPF? This has always baffled me. In WinForms it was an enum type and that made a lot more sense to me.
...
11
votes
6answers
19k views
Can't set DialogResult in WPF
I show a WPF window using ShowDialog() from the calling window. The window opens and is modal as expected. However, in my OK and Cancel button's click events in the dialog window I set ...
0
votes
1answer
688 views
How to get dialog result from WebBrowser.ShowPageSetupDialog
I'm using a WebBrowser control in my Visual C# (.net 2.0) application.
Now I'd like to add a print button which shows the page setup dialog and then directly prints when the user presses the OK button ...


