messagebox Questions

7

Solved

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 m...
Albers asked 20/8, 2011 at 22:16

7

Solved

Is there any way to align text into the center in msgbox in VB or VBA? Does VB have any functionality to do the same?
Leavings asked 3/2, 2012 at 15:24

7

Solved

In a WPF app, I am using a BackgroundWorker to periodically check for a condition on the server. While that works fine, I want to pop a MessageBox notifing the users if something fails during the c...
Selfimprovement asked 23/6, 2010 at 19:2

4

Solved

I'm working though the pyqt5 tutorial found here Zetcode, PyQt5 As an exercise for myself I'm trying to expand on an example so that I am presented with the same dialog message box regardless of m...
Alenealenson asked 11/4, 2016 at 17:18

6

Solved

I just need to know how to have plain text and a variable in a messagebox. For example: I can do this: MsgBox(variable) And I can do this: MsgBox("Variable = ") But I can't do this: MsgBox("Var...
Rhesus asked 25/12, 2011 at 15:6

5

Solved

Short question: I have a string in my resources: "This is my test string {0}\n\nTest" I'm trying to display this string in my Messagebox: MessageBox.Show(String.Format(Properties.Resources.About,...
Astromancy asked 14/3, 2014 at 10:29

7

I have a QMessageBox like this: QMessageBox::question(this, tr("Sure want to quit?"), tr("Sure to quit?"), QMessageBox::Yes | QMessageBox::No); How could I translate the Yes/No word? since the...
Tainataint asked 21/7, 2015 at 7:39

6

Solved

Winforms-How can I make dialog boxes appear centered on MainForm? That is as opposed to be based on Normal windows default which renders them in the centre of the screen. In my case I have a smal...
Whipsaw asked 4/4, 2010 at 22:44

7

Solved

In normal Python (3.x) we always use showerror() from the tkinter module to display an error message but what should I do in PyQt5 to display exactly the same message type as well?
Jink asked 24/10, 2016 at 20:32

2

Solved

I want to get the MessageBoxIcons, that get displayed when the user is presented with a MessageBox. Earlier I used SystemIcons for that purpose, but now it seems that it returns icons different tha...
Rech asked 17/6, 2014 at 6:59

12

Let me give you the background. We have an Application(medium sized) that is using MessageBox.Show (....) at various places (in hundreds). These message boxes are part of workflow and being use...
Inexactitude asked 28/10, 2011 at 7:1

13

Solved

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 V...
Dislocation asked 8/7, 2009 at 13:19

5

Solved

How do i get an System.Drawing.Image for the various System.Windows.MessageBoxImage(s) and/or System.Windows.Forms.MessageBoxIcon(s)
Epictetus asked 21/8, 2009 at 1:56

3

Solved

I am trying to output the area using a message box, and it should be displayed as, for example, 256 unit^2... How can I write a superscript (for powers) and a subscript (like O2 for oxygen)??? Th...
Doherty asked 17/7, 2013 at 15:36

8

Solved

I need to display a message to the user. When I do this using MsgBox, the program stops until the user clicks the box away. I'd like to know if there's a way to open the MsgBox without pausing the ...
Murial asked 28/3, 2011 at 13:32

22

Solved

Is there a way to display a message box from a batch file (similar to how xmessage can be used from bash-scripts in Linux)?
Butanol asked 21/4, 2009 at 19:21

3

Solved

Help me please to create a messagebox which stays always on top, and user can't use other windows functions like calling start menu or interacting with other windows until he presses the OK button ...
Leannaleanne asked 9/7, 2012 at 11:49

2

I'm developing .net core console application. I want to alert to user when want to exit application. Like below; MessageBox.Show("Contiue or not", "Question", MessageBoxButtons.YesNo, MessageBoxI...
Esperanzaespial asked 24/1, 2020 at 14:48

4

Solved

I would like to create a MessageBox that has Yes/No buttons AND a checkbox. The application is a picture resizer and it will be re-sizing a number of pictures at once; in the process it will check...
Electrolyte asked 30/6, 2013 at 0:17

7

Solved

Can you display a message box (or any form of notification) from a windows service? Can't get it to work. I used: global::System.Windows.Forms.MessageBox.Show("A fatal error occurred. " + Servic...
Mim asked 7/5, 2010 at 6:22

10

Solved

I have a message box with the YesNoCancel buttons... Pressing Yes will do some action and close the application - works fine Pressing No will do nothing and close the application - (see below) Pr...
Shirtwaist asked 13/2, 2010 at 8:10

3

I wonder is there an API for creating custom notifications in Windows 10 style like the one showing when updates are available for example? I know that Citrix can send messages showing like that a...
Cultural asked 2/12, 2021 at 13:52

4

I've been trying to build a fairly simple message box in tkinter that has "YES" and "NO" buttons. When I push the "YES" button internally it must go and write YES to a file. Similarly, when "NO" is...
Rosana asked 27/6, 2009 at 8:48

4

Solved

How to show a message box in a .net c# or vb console application ? Something like: Console.WriteLine("Hello World"); MessageBox.Show("Hello World"); or Console.WriteLine("Hello") MsgBox("Hell...
Decagram asked 29/3, 2015 at 5:45

4

Solved

I am currently developing an application in C# where I display a MessageBox. How can I automatically close the message box after a couple of seconds?
Conflagration asked 6/12, 2010 at 0:29

© 2022 - 2024 — McMap. All rights reserved.