A message box is a prefabricated modal dialog box that displays a text message to a user.

learn more… | top users | synonyms

0
votes
1answer
15 views

Unicode and PDF tooltips / messageboxes with iTextSharp

I need to find a way to add a quite long string in a quite small space in a PDF document. I am using iTextSharp. I have already tried adding comment annotations (balloons) with ...
0
votes
0answers
15 views

treeview AfterLabelEdit MessageBox displays twice

I am playing with Treeview and the AfterLabelEdit function and IM having a problem where after validation it displays the MessageBox Twice before it goes back to Editing. Anyone see what I might be ...
-1
votes
3answers
27 views

How to split a label into multiple lines if it's too wide

I want to make my own message box, here are it's constructors: public MBX(string message) { InitializeComponent(); } public MBX(string message, string title) { ...
0
votes
1answer
31 views

Check if File exists, then Retry

I have a function which checks for the existance of a file (return file.exists(file)). If it does not exist, then I display an error message with options Abort, Retry, Ignore. My trouble is I can't ...
0
votes
1answer
36 views

Application-modal MessageBox from non-modal WPF window

I work on an application that contains a mixture of Winforms and WPF. The older parts of the app are Winforms (including the "main" application window) with some of the more recent screens being WPF. ...
0
votes
1answer
29 views

Showing Variable's Value on Message Box

This is a very simple problem, I have been trying it for some times, but not working. I have this code: [s,h]=silhouette(cobat,g,'SqEuclidean') MS = mean(s) z = [cobat s]; I want to show the MS ...
0
votes
2answers
22 views

How to create a message dialog or popup using devexpress xaf

How would I create or is there built in functionality in XAF to display a message box in a XAF web application?
-1
votes
6answers
59 views

Get time process takes to complete in seconds?

My program runs a batch file in cmd.exe, after it finished I want to display a MessageBox to user saying "Finished in #.## seconds", I'm redirecting CMD output to a textbox using ...
0
votes
2answers
47 views

How to use a messagebox in a event handler

Context : I have a TreeView in one of my form. Depending on the selection of that TreeView I load a UserControl in a pannel. One pannel is readonly but in the other pannel the user can modifie/add ...
0
votes
0answers
42 views

C# - Check if got message from page with (web browser control)

My program is logging into the website and if the login fails I'm getting a message from the page which is automatically displayed in the messagebox box in my program: "Message From Page" Username ...
0
votes
0answers
23 views

Automated tests using MessageBox with MessageBoxButtons.YesNoCancel

I'm using the TestStack.White framework for a WinForms .Net 2.0 C# application's coded automated regression tests. I have no problem handling OK/Cancel message boxes (MessageBox.Show(...)) but I'm ...
0
votes
1answer
26 views

How to display global variable on messagebox?

This is written code, void horizontal_calculate() { String ^aa = filenames[0]; std::string file1(marshal_as<std::string>(aa)); String ^bb = filenames[1]; std::string ...
1
vote
0answers
88 views

MessageBox.Show Causing Exception

In my application, I have the code below for saving an excel file: ... try { workbook.SaveAs(filename, ".xls"); } catch (IOException ex) { MessageBox.Show(ex.Message, "Error saving file", ...
1
vote
2answers
75 views

extend messagebox in extjs 4

i created a new view class that extends ext.window.messagebox but when i try to show it, it gives me an error : Uncaught TypeError: Cannot call method 'setVisible' of null my code : ...
1
vote
5answers
61 views

if specific time passed show messagebox in C#

so, i want this: if specific time passed (for example 9 hours) from loading form, than i want to show messagebox said "9 hours passed". my code is this: public partial class Form1 : Form { ...
0
votes
1answer
37 views

my chat system looks a little wierd, cant get dynamic height for cell

Ive got a chat system in my app, and im attempting to make dynamic cells to have dynamic height according to how much text is in the cell, pretty common thing people try to do, however i cant get to ...
1
vote
1answer
37 views

Wait in other thread for answer from Messagebox

I have a working class (Synchronization.java in my case) with static methods that uploads/downloads some data from and to the server. In some cases, I want to open a (JavaFX) MessageDialog ...
0
votes
3answers
92 views

Check if a combobox value has been selected - C# .net

I am trying to make my application better by handling exceptions. I have a form where if all the fields are not completed then show a message box to the user. Following is what I have attempted but ...
0
votes
2answers
73 views

ASP.NET button works with alerts but not triggering page_load or code behind method

I have a ASP.NET button with in a update panel, if I put alert('hello'), it works otherwise if I put code behind method, it doesn't work, any ideas ? <asp:Button ID="Button1" ...
1
vote
1answer
73 views

Centering OK button within a MessageBox in winforms

I am learning C#, and as a part of it I wrote small app that consists of form with two groups of buttons, two buttons each. Button for closing of app is added as well. And everything works ok. Also ...
0
votes
3answers
90 views

How to remove MessageBox Buttons?

I want to delete the buttons in a message box such as (yes, YesNo, OK ...), but not the close button. I found no way to do this unless deleting the parameter as well, but I can't do so since I need to ...
0
votes
0answers
23 views

Displaying MessageBox from GetLastError()

I've spent all day trying to produce a MessageBox that displays the error message matched by the error code generated by GetLastError(). However after hours and hours of searching, and searching ...
0
votes
2answers
23 views

Can I call MessageBox.Show() in a Window destructor (finalizer)?

Tried calling MessagBox.Show() in the destructor of a Window class, but it did nothing. I have two separate Window classes in my program, and in each of their destructors I tried this, and even if I ...
0
votes
4answers
93 views

Two Radio buttons with diferent messages when checked

I need use two radio buttons; one is ON and another is OFF. When we click on any radio button, the application shows me both messages! How do I make it show only the message for the radio button ...
1
vote
2answers
62 views

Change words on tkinter Messagebox buttons

I'm using tkinter's "askokcancel" message box to warn the user, with a pop-up, of an irreversible action. from tkinter import Tk Tk().withdraw() from tkinter.messagebox import askokcancel ...
2
votes
1answer
75 views

python ctypes messagebox appears under all programs

I'm new in python and I needed a messagebox. I used ctypes but it opens the message box under all other programs. how can I make it to be above all programs?? import ctypes def run(x=0): STOP = ...
1
vote
3answers
91 views

My MessageBox.Show Code In C# Isn't Working. There Are No Errors But Something Is Wrong

So I have recently been trying to learn C#, so I thought I'd try I simple project such as Tic-Tac-Toe. I am currently trying to add click functionality so to make sure it is working I put in a ...
-2
votes
0answers
65 views

Another the most annoying thing in DotNetBar relating to MessageBoxEx

DotNetBar is a small third-party UI lib but it's really skinny enough to develop commercial applications. However this lib is making me crazy for some of its 'features' which I consider as bugs. This ...
0
votes
1answer
38 views

c:if in jsp page is not working

i have a page which needs to show message box upon invalid login. i have the following code in my jsp: <script type="text/javascript"> window.history.forward(); function ...
0
votes
1answer
25 views

How to display messagebox for Custom Validator error message?

In my user control i am having the code as: <asp:UpdatePanel ID="UpdatePanel2" runat="server"> <ContentTemplate> <asp:CustomValidator ID="cvOrgTypeGrid" runat="server" ...
0
votes
1answer
40 views

emulator not showing message box

I want to display a message box after getting a JSON response from server.in the code given below the database is updating properly but message box is not shown.It simply shows "Unfortunately,myapp ...
0
votes
1answer
58 views

message box not showing in android emulator

i am new to android application development. i did a coding for storing data in wamp sever database from android.it works well.but i am not getting success message from PHP to android.i dont know what ...
0
votes
2answers
56 views

MessageBox.Show to variable

I have a for each loop as follows: foreach (PCparts parts in items) { MessageBox.Show(parts.PartName); } The loop returns 4 values in the following order: MOBO, GFX, CPU, and RAM Now my ...
0
votes
0answers
33 views

Python, Tkinter GUI, Confirmation YesNo messagebox & SQLite3

I am a total beginner when it comes to Python & SQLIte3 programming & I have written the following - that works without the messagebox code. My question is: How do I call saveTodb when the ...
2
votes
0answers
63 views

Focus not returning to CView after dismissing Message box

Within a derived CView class' method, I am calling the CWnd's MessageBox method. This is a docked view, not an MDI child. Upon return from MessageBox, focus goes to the Active MDI child, not back to ...
4
votes
2answers
111 views

Why isn't MessageBox TopMost?

I recently found out that by default MessageBoxes were not the top most form when displayed by default and I was wondering if anyone knew any circumstances when you wouldn't want the messagebox to be ...
1
vote
1answer
55 views

Python message box showing without stopping script

I have an script that create numbers randomly, between 5 and 55, in a infinite loop. My goal is to show a message box when the number 55 is created. I have try easygui, tkinter, ctypes,... and I have ...
0
votes
1answer
50 views

Recycle Bin image displayed on message box

Writing a winforms application. I have created a yes/no message box, displayed to the user when they are trying to delete a file but I would like to add the recycle bin image to the message. How do ...
2
votes
2answers
80 views

Add button to copy text in MessageBox

I have a program that contains a list of names, and a button that displays a random name in a MessageBox. Is there any way I can add a button "Copy" next to the OK to the MessageBox, that when clicked ...
-1
votes
1answer
38 views

message box for spin ctrl event in wxpython

Hi all i am learning python and wxpython ,now i am stuck while doing spin-ctrl button event, problem: I have a spin ctrl and few text_ctrl ,spin_ctrl max value is 7 and and it should not set it ...
2
votes
2answers
115 views

Show a MessageBox centered in form

There is a way to center a MessageBox without subclassing or hooking? I'm looking for VB.NET code.
1
vote
3answers
138 views

C#, Windows Form, Messagebox on top not working

I've some MessageBox that I code like this: MessageBox.Show(new Form(){TopMost=true, TopLevel=True}, "Message","Title", MessageBoxButtons.YesNo, MessageBoxIcon.Warning); For a better example, I do ...
0
votes
0answers
48 views

Button messagebox Extjs 3. left align in IE7

I used ExtJs 3 to display a messagebox. But the button is left align in IE 7. It show normal in Firefox and IE 9. http://i.stack.imgur.com/DwLFd.png Please help me, thank
0
votes
0answers
97 views

click the ok button on message box that arrived during running script

I wonder how can i click the 'ok' button on message box in script that arrived during running script. If anyone knows a simple solution how can i do it ? Thanks for any answers :)f
-1
votes
3answers
255 views

How to use Messagebox in class library c#?

How to use MessageBox in class library? Here is my code using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using ...
0
votes
0answers
93 views

Messagebox with text input field instead of hard coded line

Could somebody help me with the C# code attached beneath which performs "Process selected row" functionality by setting values into columns "Discontinued" and "MZ" respectively, to values as shown in ...
-2
votes
1answer
101 views

how to generate the custom message box in mvc [closed]

I generating the web application using the mvc3 and razor view. I need to use the message box with option like (yesno,okcancel,ok,YesYestoAllNoNotoAll). My idea is creating the message box using html ...
1
vote
0answers
55 views

MessageBox Customization [duplicate]

How can I customize the default MessageBox in WPF? That is, I want to Change the button text from "OK" or "Yes" to "Accept".
1
vote
1answer
108 views

Why would calling MessageBox[etc]() without a return variable cause the program to crash?

So if I write the following code: MessageBoxA(0, "Yo, wazzup!", "A Greeting From Earth", 0); the program crashes with an access violation when it exits. When I write the code like this: int a; a = ...
6
votes
4answers
175 views

MessageBox in C# showing error

I was attempting to add MessageBox.Show(Message); and it was not found in my C# .net web application (button click method and also in Page_Load).An error showing like 'The name 'MessageBox' does ...

1 2 3 4 5 13