About 37,500 results
Open links in new tab
  1. .net - How do I create a MessageBox in C#? - Stack Overflow

    0 In the System.Windows.Forms class, you can find more on the MSDN page for this here. Among other things you can control the message box text, title, default button, and icons. …

  2. c# - How do I create a message box with "Yes", "No" choices and a ...

    Mar 1, 2017 · How do I create a message box with "Yes", "No" choices and a DialogResult? Asked 15 years, 6 months ago Modified 5 years, 10 months ago Viewed 1.1m times

  3. Show message Box in .net console application - Stack Overflow

    Mar 29, 2015 · We can show a message box in a console application. But first include this reference in your vb.net or c# console application System.Windows.Forms; Reference: To add …

  4. c# - How to show a custom error or warning message box in .NET …

    How can I show message boxes with a "Ding!" sound and a red 'close' button in it? This is what I'm talking about: I'm trying to create some custom errors and warnings, but this: …

  5. c# - How to customize message box - Stack Overflow

    Sep 17, 2010 · 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.

  6. How to make a simple popup box in Visual C#? - Stack Overflow

    Nov 27, 2009 · When I click a button, I want a box to popup on the screen and display a simple message. Nothing fancy really. How would I do that?

  7. c# - How to close a MessageBox after several seconds - Stack …

    I have a Windows Forms application VS2010 C# which displays a MessageBox with an OK button. How can I make it so that, if the user walks away, the message box automatically …

  8. c# - How to create a custom MessageBox? - Stack Overflow

    .NET's MessageBox is just a wrapper for the MessageBox that is part of Win32. You will need to create a Form object for your custom MessageBox. Possibly make it a singleton. Or just create …

  9. c# - Custom Message Box - Stack Overflow

    Jul 3, 2010 · Is it possible to create my own custom MessageBox where I would be able to add images instead of only strings?

  10. c# - How do I put the contents of a list in a single MessageBox ...

    May 12, 2015 · Basically, I have a list with multiple items in it and I want a single message box to display them all. The closest I have got is a message box for each item (using foreach).