Tagged Questions
0
votes
1answer
52 views
settings bounds to JTextField
I have a JTextField that a User and an Admin update to try and solve a problem that a user may have. Although when I setText(conversation) to the JTextField the text starts in the middle and when it ...
0
votes
0answers
59 views
remove all components from jpanel with designgridlayout used on that panel
public class frame extends javax.swing.JFrame {
JTextField jt;
JLabel jl;
JComboBox jc;
int i=0;
DesignGridLayout lay;
/**
* Creates new form frame
*/
public frame() {
...
0
votes
2answers
87 views
How do I center a JTextfield
I'm having trouble centering a JTexfield in my program.The Textfield does not appear aligned with the JButton. I've tried using the x.setHoriontalAlignment(JTextfield.CENTER); but to no avail. Any ...
0
votes
2answers
102 views
Resizing JTextField in JMenuBar
I'm trying to add a JTextField as a search bar to a JMenuBar at the top of my JFrame. My problem is that the JTextField keeps getting resized to take up all available space in the JMenuBar, and I ...
6
votes
3answers
141 views
Not able to add JTextField to JFrame
I am not able to add JTextField to JFrame. My JFrame contains a JLabel and a JTextField .
First, i have added the JLabel, and it is working. Here is the code.
private static void createandshowGUI()
...
1
vote
1answer
182 views
Java - Eclipse JTextField too big
I have added a JTextField to a JPanel using the Window Builder in Eclipse and no matter what I tried, the text field is displayed like this:
I have tried to change the preferred size, the maximum ...
3
votes
2answers
262 views
Positioning components in Swing GUIs
I have some questions on positioning components and some questions on text fields and text areas (Java Swing). Any help is greatly appreciated.
Right now I am trying to have two text fields beside ...
0
votes
0answers
90 views
Dynamically resize a JTextField and set minimum amount of text
I would like to dynamically resize a JTextField and also set a minimum amount of text allowed.
Example
The text field can have a minimum length of 4, if the text is less than 4 add 0 for every ...
1
vote
2answers
399 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?
...
2
votes
3answers
344 views
Adding rows of JTextFields to a JScrollPane
I need some advice on which Swing Components to choose in order to achieve the following:
I have something like a "table" structure, that every time that I click the "Add" button, another "row" ...
0
votes
2answers
82 views
Swing getHeight() value changing from 0 to 16
I am trying to make a box in Swing that has a label of "user", a text field for the username, and a button "sign in". This is my code
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
...
0
votes
1answer
55 views
GridBagLayout missing JTextFilds
In this actionlistener i am creating 9 JTextFields named "a" to "i". But when i run the program textField "d" and "g" are missing and JLabel "Bet Value" is placed incorrect.
I am new to this and ...
2
votes
2answers
496 views
Placing JTextFields in a JFrame of a Java GUI
I have:
public class BaseStationFrame1 extends JFrame
{
JButton activateButton;
JButton deactivateButton;
BaseStation bs;
JTextField networkIdField;
JTextField portField;
...
0
votes
1answer
3k views
Set position of JTextField, JLabel and JButton in Java
When i run the program, the label textfield and button and so on are arranged randomly (label and button are in same line).
How do I explicitly set the layout?
4
votes
4answers
15k views
How can I control the width of JTextFields in Java Swing?
I am trying to have several JTextFields on a single row, but I don't want them to have the same width. How can I control the width and make some of them wider than others? I want that they together ...