0
votes
0answers
7 views
ASSERTION in a message box with custom message to users?
Is it good to define a new macro that craters my need of showing failed assertion to user and with just enough information for developers to debug the issue.
Message for user, …
1
vote
1answer
53 views
Why does my WCF service method only work once I’ve called MessageBox.Show()?
I have a WCF service which provides a method that creates a file. Sometimes it takes a little while for this file to appear, and other methods which are relying on that file's exis …
1
vote
7answers
240 views
Display message in windows dialogue box using “cout” - C++
Can a windows message box be display using the cout syntax?
I also need the command prompt window to be suppressed / hidden.
There are ways to call the messagebox function and di …
1
vote
1answer
94 views
center MessageBox in parent form
Is there a easy way to center MessageBox in parent form in .net 2.0
1
vote
1answer
453 views
Silverlight MessageBox.Show blocking WCF service call in BackgroundWorker
When a MessageBox is being displayed from Silverlight, any calls to a WCF service being executed in a BackgroundWorker are blocked. The OpenFileDialog.ShowDialog allows these call …
4
votes
4answers
2k views
MessageBox.Show— font change?
Hi all,
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, …
0
votes
1answer
31 views
Help: Change WPF application manifest?
Hello all!
I posted a comment to Microsoft that the Dialog Boxes in WPF are not VisualStyle enabled.
Joe Castro posted a workaround there which I don't really understand how to a …
3
votes
1answer
57 views
How do I choose an input using a GUI/explorer window in a MATLAB program?
I actually have 2 queries:
How do I display the data of a variable in a msgbox? In other words, if I have dist=3765 at the end of my program and I want to display it in a msgbox, …
-1
votes
0answers
172 views
WinForms MessageBox.Show hidden until Alt is pressed [closed]
Hello. I have a Windows Forms (C# 2.0) application with a form opened using ShowDialog() which in turn opens message boxes using MessageBox.Show(). The owner form becomes inactive …
1
vote
5answers
173 views
“Don’t show this again” option in message boxes
In C++/MFC, what's the simplest way to show a message box with a "Don't show this again" option?
In my case, I just want a simple MB_OK message box (one OK button).
0
votes
3answers
29 views
Verify Text of item in Listbox is the same one in List<string> C#
I'm trying to get it to verify that it has the same item in the List as the one that's currently selected in the listbox
Why does this code not work, It should work unconditionall …
0
votes
1answer
201 views
why message box is always hidden behind main dialog and cannot be shown on the top
I am using MFC to write a GUI application. I chose dialog-based application, and put
picture control, edit box and buttons on it. When the picture control is mapped to
the class d …
1
vote
1answer
59 views
How to recieve feedback from a Windows MessageBox? (C++)
I know its possible to do something like this with Windows:
MessageBox(hWnd, "Yes, No, or Cancel?", "YNCB_YESNOCANCEL);
But how do I react to what the user pressed (like closing …
0
votes
3answers
146 views
MFC: How to i convert DWORD and BYTE to LPCTSTR in order to display in MessageBox
I'm using VS2005 with "using Unicode Character Set" option
typedef unsigned char BYTE;
typedef unsigned long DWORD;
BYTE m_bGeraet[0xFF];
DWORD m_dwAdres …
0
votes
1answer
78 views
task kill command does not work for c# app
I have c# winform bug: when the application is waiting for user input yes/no/cancel taskkill command line does not work.
Any idea?
