Tagged Questions
1
vote
1answer
26 views
JPanel additional column on GUI upon run?
Been working on a school project in which my group and I are making a Wheel of Fortune game with a GUI and all. When making the panel for the puzzle to be displayed, I'm running into the problem of an ...
0
votes
1answer
44 views
Creating a Wheel of Fortune-esque puzzle board using JPanel/JFrame Java
I was assigned a free-form Java coding assignment in my computer science class in which my group and I decided to make a Wheel of Fortune type game. I've been working on the GUI using JPaneland ...
0
votes
0answers
31 views
Can't get JPanel to display Entire Content
To put Basically, In Java, I have 3 different JPanels.
A Label with a JTextField in Panel 1,
A Button Panel in Panel 2,
and a second JTextField in Panel 3.
In Panel 1, I'm trying to Place the Label ...
-3
votes
1answer
41 views
Title over 150 chars, about JTextField and JPanel
Would be title: Why does the JTextField go away when I uncomment line 40, how would I add the Ellipse2D.double ball to the JPanel, and is there a better thing to use than JPanel.
I'm trying to make a ...
0
votes
0answers
53 views
Storing input in 2d array from JTextfield
I am making a program where the user inputs the day number, and then the amount of rainfall that fell on that day. I've set up a 2d array with 31 coloumns and 2 rows, as there is 31 days in the month ...
0
votes
2answers
97 views
Lose Focus on JTextField when clicking on the panel
I want to lose the focus on a JTextField when the user is clicking on the main panel.
setFocusable(true) doens't work for me.
If I am clicking on the main panel, the JTextField has still the focus ...
1
vote
2answers
103 views
Edit jtable content by row selection [closed]
I have a class that have a Editbutton and set it a actionListener.
I write my Whole class Codes.
I have 3 Class ,
public class UserPage extends JFrame implements ActionListener {
private AllUser ...
2
votes
1answer
74 views
How to update JTextFields in a GridLayout?
I have a MainPanel which uses the Gridlayout. Consequently I have created four JPanel classes for the: NORTH, EAST, CENTER and EAST layouts respectively. I then add all four to my MainPanel.
However, ...
0
votes
2answers
79 views
Refreshing JPanel and Switching JTabbedPane in ActionPerfmored
private void buttonAddJobActionPerformed(java.awt.event.ActionEvent evt) {
try {
retrieveID();
String sqlStm = "INSERT INTO Job ...
0
votes
1answer
87 views
How to create rectangle blocks inside JPanel?
Hello I have a problem creating a cache simulator.
I created a panel in witch I want to draw nrofblocks blocks each with blocksize lines.
I don't know what is the best way to do this, that is why I ...
0
votes
1answer
518 views
Simple JFrame program but can't see JTextfield
I'm trying to learn Swing on my own.
I'm playing with a toy program that asks the user to input their name. I put a JLabel and JTextfield into a JPanel where the user can input their name and submit. ...
1
vote
1answer
120 views
Java Swing Change Context of JTextField in several JPanels In 1 JFrame
Maybe you can help me out here :)
I want to "simulate" like say 10 machine-stations. In my JFrame/Container (I tried both) I put these 10 maschines ( = 10 JPanels containing x buttons, textfields, ...
1
vote
2answers
408 views
JTextField not showing up in JPanel on launch
The JTextField is there because when I move the mouse over where it's supposed to be the mouse icon changes to a cursor, then when I click it shows up. But it's invisible at launch. What am I missing?
...
0
votes
0answers
58 views
how do I add a jtextfield over a disabled scroll pane with text in it?
most of my code is working. I only need to create a very small config dialog (to input some text as a path for this app. (A log file monitor)
Its almost there, the textfield appears over the ...
1
vote
0answers
181 views
accessors in class extending JPanel
I'm writing a clone of Risk in Java, and am having some trouble with my code. When I create a new game, I create a JPanel with a JTextField (for the player name) and a JComboBox(for the player color), ...
1
vote
1answer
392 views
Java Swing: JButton creates new JTextField(s)
Hello :) I am beginner in Java Swing and I can't google solution for my problem. I have a JPanel and want to add JTextField(s) dynamically after pressing a JButton. And how can I getText() from them ...
0
votes
2answers
514 views
Accessing GUI JTextField objects that are dynamically generated
I am writing a program that contains a JButton. Every time the button is clicked, a new JTextField is added to a JPanel.
My problem is that, after the user has created all the JTextFields and filled ...
3
votes
1answer
186 views
Java Arrays being overwritten
Hey I'm a little new here so my apologies if I messed something up in my post. Anyways the problem I'm having has to deal with arrays, what I'm trying to do basically is use the String[] arrays to ...
1
vote
1answer
327 views
Trying to display a variable created in one jpanel and display it in another jpanel
I'm a student programming a frogger game, when the frog collides with an object or reaches the end zone either the score is incremented or lives decremented and the frog returned to the start ...
1
vote
2answers
1k views
Using a text field and a button to initialize a variable
I have a piece of code like this, where I am trying to use button to access a JTextField...
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class NameGameFrame extends ...
0
votes
1answer
493 views
TextField is not getting updated when setText(“…”) is called?
I am currently developing MineSweeper in java.In that I have to update JTextFields(as shown in Fig.) When I call setText(), Logger shows it is properly called. But in output there is no response.
...
-1
votes
1answer
228 views
Text not Setting in JTextArea/Field
I am having problems setting some text in a JTextArea and a JTextField...I am a little confused because I have set text in them before, as a matter of fact I have set them in a different class of this ...
2
votes
3answers
1k views
Only allowing numbers and a symbol (-) to be typed into a JTextField
I'm trying to create a math quiz and I only want the user to be able to enter numbers whether they're negative or positive. Is there any way to do so? I've thought of using Regular Expressions but ...
-2
votes
2answers
257 views
JTextField loading
I'm having a problem..
In my code I have it so that text should output to a JTextField. when I run the program, it doesn't. However, if I directy after my code for putting text into the JTextField put ...
0
votes
1answer
590 views
Losing Focus From A JTextField
After I use my textfield I can't get a jpanel that click on back into focus for my keylistener. It works for the mouselistener but all other keystrokes keep being detected by the textfield not the ...
2
votes
2answers
4k views
loop through JPanel
In order to initialise all JTextfFields on a JPanlel when users click a "clear button"
I need to loop through the JPanel (instead of setting all individual field to "").
Can someone please show me how ...
3
votes
6answers
17k views
Adding JTextField to a JPanel and showing them
I'm building a little app using Java and Swing in NetBeans. Using NetBeans design window, I created a JFrame with a JPanel inside.
Now I want to dynamically add some jTextFields to the JPanel.
I ...


