Tagged Questions
The messagebox tag has no wiki summary.
15
votes
4answers
7k views
Is there a WPF message box?
Is there a standard message box in WPF I should use, like WinForms System.Windows.MessageBox.Show()?
...or is it OK to use the WinForm message box?
15
votes
4answers
11k views
MessageBox.Show— font change?
I'm using the MessageBox class to show errors to users, and while that might not be the right behavior, it's very convenient. This is a touchscreen application, however, so I need the 'ok' button to ...
14
votes
5answers
1k views
Produce “toast” messages like StackOverflow
One of the issues I think about every time I build my web application is how messages should appear to the end-users
I tried message boxes like those in windows applications, but they look so bad ...
13
votes
3answers
1k views
Is there a non-blocking version of MessageBox.Show (or something like it)?
Long-delayed update
I'm accepting MUG4N's answer to this question, and I also want to respond to some of the criticisms that were raised against it.
ChrisF said:
...you can't make UI calls ...
13
votes
9answers
4k views
How have you successfully implemented MessageBox.Show() functionality in MVVM?
I've got a WPF application which calls MessageBox.Show() way back in the ViewModel (to check if the user really wants to delete). This actually works, but goes against the grain of MVVM since the ...
11
votes
9answers
284 views
Should I use a warning icon or a question mark icon in a Windows message box?
Many know of the MessageBoxIcon of type "question". If you are not particularly familiar with this icon, it is just a glorified question mark. I am curious as to whether or not this icon is ...
10
votes
3answers
7k views
center MessageBox in parent form
Is there a easy way to center MessageBox in parent form in .net 2.0
8
votes
2answers
429 views
Creating A MessageBox That Doesn't Stop Code?
Ok, I'm looking for something pretty simple: creating a MessageBox that doesn't stop my code.
I'm guessing I'll have to create a different thread or something? Please advise on the best way to ...
8
votes
7answers
16k views
Custom button captions in .NET messagebox?
Is there an easy way to display a messagebox in VB.NET with custom button captions? I came across What is an easy way to create a MessageBox with custom button text in Managed C++?, in the Stack ...
7
votes
5answers
481 views
How to use Messageboxes in MVVM?
It seems that the XAML in MVVM pattern has difficulty to pop-up a Messageboxes. My client insists that the validation labels and colors are not good for them. They still want a messagebox. How can do ...
7
votes
2answers
1k views
How do i get an Image for the various MessageBoxImage(s) or MessageBoxIcon(s)
How do i get an System.Drawing.Image for the various System.Windows.MessageBoxImage(s) and/or
System.Windows.Forms.MessageBoxIcon(s)
6
votes
3answers
123 views
How can I show a message box with details in WinForms?
Just now I noticed that Visual Studio shows a message box with details when a property is set to an invalid value. For example:
Is it possible to make this type of message box in WinForms?
I have ...
6
votes
3answers
248 views
Delphi messagebox appearing behind other form
I am using the code below to create a messagebox in Delphi 7. However I also have another form on screen who's FormStyle is set to fsStayOnTop and the messagebox appears behind this form.
Is there ...
6
votes
3answers
3k views
WPF MessageBox window style
How can I apply default Windows style to standard MessageBox in WPF?
For example, when I execute next code:
MessageBox.Show("Hello Stack Overflow!", "Test", MessageBoxButton.OKCancel,
...
6
votes
4answers
305 views
WinForms message box with textual buttons
Windows 7(?) introduced a new message box feature (I'm not sure what it is called so I've uploaded a picture). How can I create such a box in C# with WinForms?
6
votes
6answers
945 views
What is the difference between Invoking and BeginInvoking a MessageBox?
In a form, compare
BeginInvoke (new Action (() => {
MessageBox.Show ());
}));
with
Invoke (new Action (() => {
MessageBox.Show ());
}));
What is the difference, and when should I ...
6
votes
5answers
3k views
MessageBox bold text
How to show the text in bold in messagebox.show for c#?
Any suggestions?
Thanks,
Karthick
5
votes
4answers
707 views
C# - MessageBox - Message localization in resources and lines breaks
I would like to show MessageBox (WinForms) with string from Resources with lines breaks.
example without Resources (WORKS):
string someMsg = "Message. Details:\n" + someDetails;
...
5
votes
2answers
537 views
Problem with MessageBox(es)
I am experiencing strange behavior using MessageBox(es) in a C#/WPF program.
Create a basic WPF application put some labels on it and a button.
Here is the code of the button click
private ...
5
votes
3answers
4k views
MessageBox.Show for Windows Phone 7
I need a MessageBox.Show(), but with an extended functionality: the built-in messagebox for Windows Phone 7 won't show arbitrary buttons, just OK or cancel, I need for example YesNo as well. I need a ...
5
votes
1answer
407 views
How can I supress Delphi DataSnap error message dialogs?
We run a DataSnap Delphi 2009 application on Windows 2003 Server. DataSnap Client and Server are on the same computer, using DCOM over Borland Socketserver. The client runs a background batch job.
...
5
votes
7answers
4k views
jquery: Flash messages
With jQuery, how can I display a flash message at the top of the page in an easy way? Is there something built-in, or a plugin, or is it easy enough to do it yourself?
What I mean is like after a ...
5
votes
2answers
2k views
Auto close QMessageBox
I'm building a Qt Symbian Project and I want to show a notification for the user that should auto close after some seconds. I have seen that Nokia uses this a lot in their ui.
Right now I'm using ...
5
votes
1answer
508 views
ALT + TAB is not working after displaying MessageBox on modal dialog
ALT + TAB is not working after displaying MessageBox on modal dialog...
I've three projects (P1, P2 and P3) under one solution file. P1 contains P1Form.cs, P2 contains P2Form.cs.
Detail of these ...
4
votes
1answer
231 views
Size of MessageBox
How does .NET's MessageBox determine its size relative to the resolution of the screen on which it is displayed?
I am writing a slightly more flexible dialog window for a WPF application. The layout ...
4
votes
2answers
718 views
TextBox in MessageBox in Windows Phone 7
Is it possible to insert a TextBox for the user to input text on top of a MessageBox in Windows Phone 7?
Thanks.
4
votes
3answers
532 views
WPF MessageBox buttons aren't OS themed
So the buttons of my message box in WPF aren't themed by the OS.
I even tried this method and it didn't work.
I have a manifest, I am running under Windows 7 Ultimate x86 and .NET Framework 4 Client ...
4
votes
2answers
308 views
Listening for MessageBox and Dialog results in my application
I have a "ControlMonitor" class which is designed to listen to the events that occur on a form. The way it works is, I pass the form that I want to monitor into an instance of this class, and then the ...
4
votes
2answers
1k views
How to customize message box
I am doing C# application, and I want to change the style of a message box. Is it possible or not?
Example: change button style, fore color, etc.
4
votes
3answers
445 views
MessageBoxA in Windows AT&T Assembly
I'm trying to call MessageBoxA() directly in assembly, using gcc inline. However I need to do this in 2 ways: first is using dynamic addressing, with LoadLibrary() and GetProcAddress() - I found a ...
4
votes
7answers
2k views
Create a Modeless Messagebox
How might one go about creating a Modeless MessageBox? Do I have to just create my own Windows Form class and use that? If so, is there an easy way of adding a warning icon (rather than inserting my ...
4
votes
6answers
2k views
C# MessageBox Error Messages
In my application I am using message boxes to display error information.
try
{
// Something...
}
catch (SystemException ex)
{
MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, ...
4
votes
3answers
993 views
An “About” message box for a GUI with Qt
QMessageBox::about( this, "About Application",
"<h4>Application is a one-paragraph blurb</h4>\n\n"
"Copyright 1991-2003 Such-and-such. "
"For technical support, call 1234-56789 or ...
4
votes
4answers
1k views
C# - Use form instead of messagebox
I am working on an application for work and I need a customized messagebox to appear. I have created a simple form called Alert.cs that I have styled the way I want and added one button with a click ...
4
votes
1answer
1k views
OpenGL with GLUT on windows 7, fullscreen mode not showing the message box
I wrote an OpenGL app in C++ a while ago, back when my operating system was Windows XP.
I used GLUT (plane ol' version) to show the window and also used full screen mode.
There are times when I ...
4
votes
4answers
3k views
Replacement for yes/no/cancel MessageBox (C#)
I am looking for a decent replacement for the standard windows YES/NO or YES/NO/CANCEL MessageBox.
I have often seen these standard dialogs misused in ways such as: "To save in plain text answer YES, ...
4
votes
3answers
2k views
MVVM Exception Handling
I have a WPF Application that I have been trying to write in the MVVM style. If an Exception is thrown (like when a document is opened), I would like to display a MessageBox. Easy to do, but my code ...
4
votes
1answer
704 views
how to add customized buttons to the existing Messagebox in WPF
how to add customized buttons to the existing Messagebox in WPF ? Apart from the usual ok and cancel button i need to add 3 more buttons and also i need to handle the events of these buttons.. How is ...
4
votes
8answers
11k views
How to display an error message box in a web application asp.net c#
I have an ASP.NET web application, and I wanted to know how I could display an error message box when an exception is thrown.
For example,
try
{
do something
}
...
3
votes
5answers
64 views
Displaying current datetime in MessageBox in C#
I know this is very trivial but I can't seem to find the answer as I have never done C#. Searched on Google but in vain.
I am trying to display current datetime in MessageBox in C# but I get ...
3
votes
2answers
63 views
Java Frame Disappears when trying to pop up a message box?
I have a java code that responds to a button click event. The Parent JFrame which has the button Disappears when i try to pop up a message box , So what's the problem ?
Here are the codes :
private ...
3
votes
3answers
161 views
message box with button “Yes to All” and “No to All”
Is this possible? The MessageBox.Show methods apparently force me to use one of the MessageBoxButton enums, and none of them has the Yes to all and no to all option. Is it possible to display a ...
3
votes
5answers
267 views
c# select text from messagebox.show popup
i've been searching on google and stackoverflow for 2hours now. There has to be something i am just simply overlooking. Is there an easy way to make the text selectable in a messagebox? As of right ...
3
votes
7answers
72 views
Why is it that I need not convert int to string in this case? (.Net)
private void button2_Click(object sender, EventArgs e)
{
int i = 5;
MessageBox.Show(i);
}
Fails..
private void button2_Click(object sender, EventArgs e)
{
int i = 5;
...
3
votes
5answers
128 views
C# Message Box, variable usage
I have searched but I dont know if I am using the correct verbiage to search for. I am writing a program in C# for my class but I am having trouble with the message box.
I am trying to have the ...
3
votes
1answer
53 views
winforms - Can't get windows narrator to read message box content
I have a simple message box:
MessageBox.Show(this, "bla bla bla", "banana man", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1, options);
And for some reason I ...
3
votes
3answers
251 views
How to create a custom MessageBox?
I'm trying to make a custom message box with my controls.
public static partial class Msg : Form
{
public static void show(string content, string description)
{
}
}
Actually I need to ...
3
votes
3answers
862 views
Highlight default button in ExtJS MessageBox
is there an Ext-sanctioned way to highlight the default button (the one triggered by pressing Enter) in Ext.MessageBox?
Please note that I do not want to do that by focusing the button when the ...
3
votes
6answers
755 views
C#: Is there a winforms way to make C# MessageBox Buttons (YesNo) larger?
It would be nice to have larger MessageBox Buttons since the target for this application is a tablet.
DialogResult dialogResult = MessageBox.Show(
message, caption,
MessageBoxButtons.YesNo,
...
3
votes
3answers
356 views
New message pop up window on background c#
I need a pop up window that will be displayed on the bottom right side of the screen.
It's supposed to pop when a new message is received within my software.
How can i program it? Create new form and ...