Questions tagged [messagedialog]
119 questions
0
votes
3 answers
How to change the Button content as CamelCasing in Windows phone 8.1 Message dialog
How to change the Button content as CamelCasing in Windows phone 8.1 Message dialog?
private async void Button_Click(object sender, RoutedEventArgs e)
{
MessageDialog msg = new MessageDialog("Do you want to continue?");
…

Sankarann
- 2,625
- 4
- 22
- 59
0
votes
0 answers
JOptionPane.showMessageDialog is not showing
So, this is my first time over here and I'm starting with Java this should be a really silly error but I can't find why my program is getting stuck when it enters to the while section. This is a program where I ask name and age, but it cant be a…

Paris Forrer
- 3
- 1
- 6
0
votes
1 answer
Windows Phone 8.1: MessageDialog Text Style
I want to style the MessageDialog text and align its text to the right instead of left.
How can I style the MessageDialog text in Windows Phone 8.1?

Vahid
- 3,384
- 2
- 35
- 69
0
votes
1 answer
How to make java message dialog bigger?
Im currently using the following code
tableModel.setDataVector(data, columnNames);
jTable2 = new JTable(tableModel);
JOptionPane.showMessageDialog(null, new JScrollPane(jTable2));
and when I execute it, the resulting size looks like…

vvavepacket
- 1,882
- 4
- 25
- 38
0
votes
1 answer
Java client/server validation: if jtextfield empty?
For a textfield that is empty using client side validation with message dialog pop up boxes how do you code it for integer and double?
I implemented the String empname however I can't seem to make a dialog box pop up for empid and payrate, any…

CaseyT
- 15
- 1
- 7
0
votes
1 answer
Lost focus after using MessageDialog in TableViewer in JFace
I have a strange problem with MessageDialog. I have a dialog which holds a TableViewer. My plan is that when a user select something in the TableViewer, it will pop up a warning dialog. the code is like below:
contextTableViewer = new…

chygo
- 366
- 2
- 6
- 16
0
votes
1 answer
Windows 8 MessageDialog, dynamically update content
There is one MessageDialog with text, that must be updated on timer (DispatcherTimer). Debugger shows, that on timer tick Content property is assigned, but visually there are no changes. Is there any tricky way to display new title?

Ingwar
- 100
- 4
0
votes
1 answer
Continuous event firing wxPython
I have a large GUI application in wxPython. Whenever I hit a button, a MessageDialog shows some results. When clicking OK and X in the dialog the dialog disappears, but the event of the original button is fired again. Thus, the dialog is shown a…

Pphoenix
- 1,423
- 1
- 15
- 37
0
votes
2 answers
Showing MessageDialogs one after another in WindowsStoreApps using c#
In WindowsStoreApps I have three MessageDialogs which have to be showed one bye one by clicking a button in each MessageDialog.While doing this I get an 'System.UnauthorizedAccessException'.It seems we cant open another messageDialog while one is…

DesertRiver
- 29
- 8
0
votes
0 answers
Not looping through every line only looking at first line c#
Okay so I'm making an app for windows 8 store, but I'm using MessageDialog for errors I'm not particularly sure why but it seems that when I include the MessageDialog the foreach loop stops looping through every single line and looking at the first…

user3263978
- 193
- 1
- 2
- 14
0
votes
1 answer
How to use extended class as variable?
My problem is hopefully simple to solve and I believe is just a lack of my Java knowledge. I've probably used the wrong terminology in the title. I'm sorry about that.
Basically, I'm using Java swing and my frame is a class (public className extends…

Jake Stanger
- 449
- 1
- 8
- 24
0
votes
1 answer
Dismiss the MessageDialog in onDestroy() not working?
To show the Message Dialog while screen is turned on and also retained the dialog on orientation changed.
public void onDestroy()
{ //savedMessageDialog id represents the current MessageDialogId
//dismiss the message dialog if message id…

Swift
- 829
- 2
- 12
- 33
0
votes
0 answers
MessageDialog closes PopUp with IsLightDismissEnabled=True
I have a PopUp to simulate a FlyOut. Its property IsLightDismissEnabled is set to True.
When I display a MessageDialog from within the PopUp, the focus change automatically closes the PopUp. I don't want this to happen.
It works correctly if I set…

Davide De Santis
- 922
- 1
- 10
- 25
0
votes
2 answers
JFace MessageDialog, message string contains '&' char; '&' not displayed
I am trying to use JFace Messagedialog.openInformation dialog, and my message string contains an ampersand '&' character. The ampersand is not displayed when the dialog is opened. Through trial and error, I have found that if I double the…

GLNN.LRSN
- 56
- 1
- 9
0
votes
2 answers
Message Dialog not displaying on Windows 8 tablet - Caliburn.Micro/C#
Has anyone heard of any issues with MessageDialog's not displaying on Windows 8 tablets? Or more specifically Samsung 700t? It uses a regular intel process and not ARM. I built the app on a laptop and the messagedialog shows when debugging from the…

Zach Johnson
- 123
- 9