Questions tagged [messagebox]

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

1861 questions
0
votes
1 answer

first chance exception when i use messagebox

Whenever i use MessageBox function, i am getting first chance exception. My messagebox is like this. MessageBox(NULL, (LPCWSTR)L"testing", (LPCWSTR)L"SOFTSAFETY", MB_OKCANCEL | MB_ICONWARNING); If i debug, i am getting this First-chance exception…
Kumar
  • 616
  • 1
  • 18
  • 39
0
votes
1 answer

confirm messagebox only with mouse

I wrote an application, where the user filled in a form with some text and pressed enter when a textbox is filled. After this some checks were done and a nominal MessageBos with an OK-Button appeared. Some useres didn't read the messagebox, typed…
0
votes
1 answer

Diaglog box before form submission jquery

I have a form and I just want a simple jquery message box that displays all the users input before submission and confirming to submit. I'm new to jquery. Any help is highly appreciated. Thanks. Here's my form.
jackhammer013
  • 2,295
  • 11
  • 45
  • 95
0
votes
1 answer

c# array wont update without messagebox

I have this form which includes a combobox, and a listbox. The combobox has each subfolder inside the graphics folder as it's items. When the combobox's selected value changes the program will list every .png file inside the selected folder and add…
kAlekki
  • 3
  • 3
0
votes
2 answers

Using methods with parameters

I would like to use a method, that creates a message box: public class Layout { public void MBox(string msgText, string msgCaption, MessageBoxButtons msgButton, MessageBoxIcon msgIcon) { MessageBox.Show(msgText, msgCaption,…
sjantke
  • 605
  • 4
  • 9
  • 35
0
votes
3 answers

How to: Create and Use Assemblies (C#)

Today I have seen the following: Babo.UI.Library.Forms.MessageBox.Show("Text.", "Caption", MessageBoxButtons.OK, MessageBoxIcon.Error); It seems, that the coder uses his own assembly. Whenever I create a new application, I copy and paste my code…
sjantke
  • 605
  • 4
  • 9
  • 35
0
votes
1 answer

How to Navigate to a WPF Page from a MessageBox Result?

I tried to used a Message Box Ressult to tried to navigate to other, or the same WPF Page when the MessageBox.Result was Cancel button, but I don't know if it´s possible. I tried to do something but not function (The comment line from…
0
votes
2 answers

DialogResult in RadWindow.Confirm()

I'm using radwindow for my custom confirmbox in my WPF application. Now i need to get the result which the user clicked without firing an event. //Code: DialogParameters param = new DialogParameters(); param.Theme = new Windows8Theme(); …
A Coder
  • 3,039
  • 7
  • 58
  • 129
0
votes
1 answer

Display multiple message boxes in just one box

I have a Macro to check if data satisfies some conditions. If it does one message box is displayed for every matched criteria. I would like to have a unique Message Box displaying all conditions which were matched. What is the best approach to…
Andre Silva
  • 4,782
  • 9
  • 52
  • 65
0
votes
0 answers

Java boolean method for true and false / MessageBox

I'm trying to make a method which uses messageBox, taking into account situations in which the program exits or pressing the "X" button, to ask whether to record changes and tie it to save the code to work. If there is no change, no message is…
EmlX
  • 1
  • 1
0
votes
1 answer

how to display flash message to ask select a list from listbox

can u guys check this code for me? i want to try display flash message if the user dont select any options from the listbox Public Sub btnHVM_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnHVM.Click …
zayya
  • 1
  • 3
0
votes
1 answer

error with python qt message box

The messagebox keeps 'flashing' :s. It doesn't crash, but it just keeps on opening and re-opening. How could I fix this problem? self.retranslateUi(Login) QtCore.QObject.connect(self.ExitButton, QtCore.SIGNAL(_fromUtf8("clicked()")),…
Thaz
  • 15
  • 1
  • 5
0
votes
1 answer

Kivy equivalent to tkinter's messagebox

I'm attempting to transition a program from tkinter to Kivy. When I got to a section where I used messagebox.askyesno, I figured that I could just create a popup with a couple of buttons, and I'd be done. The issue I've encountered is that, while…
Pistol Pete
  • 1,027
  • 2
  • 12
  • 25
0
votes
2 answers

multiple user inputs to messagebox

I am trying to incorporate many user inputs (textboxes, comboboxes, DatePicker, etc) into one messagebox that will appear once a button is clicked, but I do not know how to do that all within one messagebox. I only know how to do them…
Shiro
  • 5
  • 1
  • 5
0
votes
1 answer

How to get last inserted ID in MessageBox after clicking Submit Button

I have this code: private void btnPotvrdi_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection("Data Source=BCKPSRVR;Initial Catalog=protokol;Integrated Security=True"); con.Open(); SqlCommand sc = new…
Mladen G
  • 63
  • 7
1 2 3
99
100