Tagged Questions
JOptionPane makes it easy to pop up a standard dialog box that prompts users for a value or informs them of something.
5
votes
4answers
2k views
How to get JOptionPane with three text fields
I want to know how i can do a messageBox from three input dialog ..
Like this:
JOptionPane.showInputMessageDialog("Enter your FirstName");
JOptionPane.showInputMessageDialog("Enter your ...
5
votes
4answers
6k views
How to make JOptionPane.showConfirmDialog have No selected by default?
I implemented a Save As dialog in Java that prompts the user if the file already exists, and I want the No option to be selected by default. How do I do this?
Here is my current code:
JFileChooser ...
4
votes
1answer
56 views
ensure title is fully visible on JOptionPane
I have a message box with a short message. How can I ensure that title of a message box is not truncated and is fully visible?
4
votes
2answers
119 views
how to set position of JOptionPane
I'm creating this JOptionPane
JOptionPane.showMessageDialog(this, "File was saved", "Save",
JOptionPane.INFORMATION_MESSAGE);
but my JFrame is big so it is scrollable. When I call this command, ...
4
votes
3answers
388 views
Can I use a Java JOptionPane in a non-modal way?
I am working on an application which pops up a JOptionPane when a certain action happens. I was just wondering if it was possible that when the JOptionPane does pop up how can you still use the ...
4
votes
1answer
1k views
JOptionPane customize input
All I want to do is have a JOptionPane inputDialog with a JTextArea instead of a JTextField.
I tried putting the JTextArea inside of the Message parameter like so
Object[] inputText = new ...
4
votes
2answers
3k views
How can I make JOptionPane dialogs show up as a task on the taskbar?
Edit:
The question follows the horizontal rule; my own answer precedes it.
Based on help from Oscar Reyes, I crafted this solution:
import javax.swing.JOptionPane;
import javax.swing.JFrame;
...
3
votes
3answers
47 views
JOptionPane to get password
JOptionPane can be used to get string inputs from user, but in my case, I want to display a password field in showInputDialog. The way I need is the input given by the user should be masked and the ...
3
votes
3answers
94 views
JOptionPane with multiple buttons on each line?
How would I go about displaying a JOptionPane.showinputDialog() with multiple JButtons on each line? I am not talking about the Yes, No, Cancel buttons but multiple custom labeled JButtons that ...
3
votes
2answers
89 views
Where is lost setSelected from JCheckBox
Can someone to explain me where I lost setSelected() for JCheckBox when I put into ItemListener the JOptionPane, is this bug ?
Just curiosity is that if is this procces delaled into invokeLater() ...
3
votes
3answers
136 views
How can I dismiss one JOptionPane upon emergence of another JOptionPane in the GUI
As you have seen from my subject above,
I would like to know how can I dismiss a JOptionPane which became irrelevant because of another JOptionPane and because the user ,for some reason, didn't ...
3
votes
2answers
129 views
How format the output of decimal numbers via the JOptionPane
My assignment asks me to format values to two decimal places. We are asked to use the JOptionPane for input/output. I know how to format to two decimal places using the System.out.printf. However, I ...
3
votes
2answers
131 views
How to add text area on JOptionPane
Currently I have a JOptionPane. On clicking a button I am executing following line.
JOptionPane.showInputDialog(this,"Enter your message","Messages",2);
It opens a popup with a text box. This text ...
3
votes
2answers
156 views
How can I put an actionlistener to the OK button of JOptionpane.showInputDialog?
I have a showInputDialog. Whenever I type something to that field, I want it to be save as textfile when I click the ok button. My problem is I don't know where/how to put the listener.
Could ...
3
votes
5answers
115 views
How do I change the value of a JOptionPane from a PropertyChangeListener without triggering the listener?
I am trying to make a program to manage a group of sports players. Each player has an enum Sport, and SportManager has convenient factory methods. What I am trying to do is open a dialog that has a ...
3
votes
2answers
84 views
How to Delay MessageDialogBox in Java?
So in this chunk of code:
//Actions performed when an event occurs.
public void actionPerformed(ActionEvent event)
{
String command = event.getActionCommand();
//If ...
3
votes
4answers
704 views
Setting component focus in JOptionPane.showOptionDialog()
In order to have custom button captions in an input dialog, I created the following code:
String key = null;
JTextField txtKey = new JTextField();
int answerKey = ...
3
votes
2answers
414 views
Getting hold of a reference to the object created by JOptionPane static methods
I wonder if it is possible to get hold of a reference to the (JDialog?) object created by one of those static methods of JOptionPane (e.g. showMessageDialog)? I intend to modify the position where the ...
3
votes
3answers
525 views
Java Swing - How to sound beep before any JOptionPane?
Whenever i show a JOptionPane in my Swing application i fire a beep before it like this :
Toolkit.getDefaultToolkit().beep();
JOptionPane.showMessageDialog( myFrame, "Message", "Title", ...
3
votes
2answers
2k views
User input validation for JOptionPane.showInputDialog
I'm just learning JAVA and having a bit of trouble with this particular part of my code. I searched several sites and have tried many different methods but can't seem to figure out how to implement ...
3
votes
2answers
1k views
JOptionPane background Image
How to set background Image of JOptionPane? I want to show a different image on background of an JOptionPane.
3
votes
3answers
3k views
Disabling the close x in a JOptionPane
I would like to disable the close x in the upper left corner of my JOptionPane how would I do this?
3
votes
3answers
1k views
Get the return value of JOptionPane
My JOptionPane code is as follows:
selectedSiteName = JOptionPane.showInputDialog("Enter the name of the new site:");
This renders out an input with a textbox and an OK and Cancel button. I need to ...
3
votes
1answer
6k views
Is there a multiple input JOptionPane in Java?
I was wondering if there is a JOptionPane where you can get multiple inputs from a user instead of just one? If not, how could i accomplish this using some type of prompt. I am creating Battleship, ...
2
votes
1answer
16 views
How to change background color of JOptionPane?
I have added JOptionPane to my application but I do not know how to change background color to white?
`int option = JOptionPane.showConfirmDialog(bcfiDownloadPanel,
new Object[]{"Host: " ...
2
votes
1answer
54 views
switching JPanel within main window
I have an application that allows users to select an option and based on the user selection a JPanel is removed from the Component, the new JPanel is added and the component is revalidated
see code:
...
2
votes
0answers
67 views
Double Byte (Japanese Character) in joptionpane optionDialog does not appear correctly
I am using .po file for the translation.
in the dialog box the japanese character "。"(period) looks a bit in the middle of the text instead of the bottom of the text. attached is the picture of the ...
2
votes
3answers
86 views
Java Dialog - Find out if OK is clicked?
I have a dialog for a client-GUI that asks for the IP and Port of the server one wants to connect to. I have everything else, but how would I make it so that when the user clicks "OK" on my dialog ...
2
votes
2answers
44 views
JOptionPane.createDialog and OK_CANCEL_OPTION
I have a custom dialog box that collects two strings from the user. I use OK_CANCEL_OPTION for the option type when creating the dialog. Evertyhings works except when a user clicks cancel or closes ...
2
votes
3answers
80 views
JOptionPane and scroll function
I want to JList a lot of results in a JOptionPane, however, I'm not sure how to add in a scroll function should there be too many results. How would I add a scroll bar to a JOptionPane? Any help would ...
2
votes
2answers
63 views
Several input fields with JOptionPane?
I wonder if it's possible to have several input fields i the JOptionPane in Java, instead of one like in the code below?
String info = JOptionPane.showInputDialog("Name?");
2
votes
2answers
63 views
How is it possible to check if JOptionPane is visible?
I have a JOptionPane option dialog which is called in my application in case there is an invalid file. It then takes input for the right file.
This is fine as long as the application is running in a ...
2
votes
2answers
75 views
JOptionPane or better solution
I would ask something about my project.
I have a Java program that connects to a website through a Connection class that takes as parameter an int. This class has only a method that return an ...
2
votes
2answers
288 views
JOptionPane.showMessageDialog() shows but without any message?
In the following code, I call JOptionPane.showMessageDialog, inside a try/catch block. But when the error is caught, my JOptionPane is visible but without any message !!! Does someone knows why and ...
2
votes
1answer
97 views
Spawning a JOptionPane in a full screen application shows the taskbar
I have a full screen (100%, even covers taskbars) application which sometimes asks for a password using a JOptionPane with a PasswordBox. My problem is that when the popup appears, you can see the ...
2
votes
6answers
545 views
Java JOptionPane Output Question. Need a little Help Please
Can anybody tell me what I am doing wrong here. I need to calculate some values from user-input into some JOptionPane-input-dialog-boxes, then outputting the answers.
I would greatly appreciate any ...
2
votes
3answers
216 views
is it possible to have multiple JOptionPane dialogs?
does anyone know how do we have a JOptionPane dialog above another JOptionPane dialog?
2
votes
2answers
374 views
How to change the button backgrounds inside JOptionPane
I was wondering if anybody knew if it was possible to change the background color on the buttons inside a JOptionPane. I know how to change the entire JOptionPane background using a UIManager, but ...
2
votes
1answer
31 views
How would i go about adding to my array through JOptionpanes?
At the moment I have to manually add items to my array but I would like to enable users to do this themselves perhaps through JOptionPanes, what would be the best way to go about this? Here is my ...
2
votes
1answer
143 views
joptionpane problem
JFrame frame = new JFrame();
Object result = JOptionPane.showInputDialog(frame, "Enter a blog website");
String word2 = (String) result;
hi, this is my coding to create a ...
2
votes
3answers
381 views
Closing JOptionPane.ShowInternalOptionDialog programmatically
My current design is like this:
I have an outer frame that displays main app. When user clicks a button on the main app, a pop-up Window should be launched. I am using ...
2
votes
2answers
436 views
Java JOptionPane.showConfirmDialog hot key
I am displaying a confirmation dialog in Java using JOptionPane.showConfirmDialog. The dialog shows a Yes No confirmation to the user. This is called as follows:
int result = ...
2
votes
1answer
812 views
Java - JOptionPane.InputDialog - What if user enters no input and clicks OK?
Well, I'm trying to create a way of detecting if the user inputs nothing and clicks 'OK.'
For example, if the user clicks cancel, I break out of a while loop with the following code:
if (words[i] == ...
2
votes
3answers
2k views
How to make an input form in java code (NOT Netbeans using JForm)?
Hi I want to make an input form so that the user can enter details in java code.
Something like this :
MY CODE
import java.awt.GridLayout;
import javax.swing.*;
class JOptionPaneTest {
public ...
2
votes
3answers
1k views
JOptionPane Input to int
I am trying to make a JOptionPane get an input and assign it to an int but I am getting some problems with the variable types.
I am trying something like this:
Int ans = (Integer) ...
2
votes
3answers
943 views
How the JOptionPane works
How can I control what happens with window after clicking JOPtionPane buttons ? I'm trying to implement simple file chooser. In my frame I have 3 buttons (OK, Cancel, Browse). Browse button opens file ...
2
votes
1answer
323 views
print matrix in dialog box
I'm having a little difficulty to print a matrix array on dialog box.
The matrix is integer and as far as i understood i need to change it into string?
anyway, here's the code:
public void ...
1
vote
1answer
42 views
custom dialog box in java
I was trying to build a custom dialog box using the following code.
public class CustomDialog
{
JTextField firstName;
JButton jb;
public CustomDialog()
{
firstName=new ...
1
vote
2answers
75 views
java for difference in time
below in the sample code which i wrote where the user gets an interface with 2 buttons. when the user click on start button the timer starts and when the end button is clicked the timer stops and the ...
1
vote
3answers
65 views
Deleting a String of data from Array List
I have been creating a program that is to add search delete bookings etc...
After hours I finaly thought I was making progress but when I delete a booking my program finds the correct booking returns ...