Tagged Questions
0
votes
0answers
22 views
Simple Key Listener does not work NetBeans
i am using NetBeans to build my application.
All my mouse listeners are works great, but key listener does not listening at all.
private void viewport1KeyPressed(java.awt.event.KeyEvent evt) { ...
0
votes
0answers
19 views
Master/Detail form + JComboBox
Unfortunately I am stuck on something that should be trivially easy.
I created a master/detail sample form with netbeans.
The wizard created the detail lines as text fields. But I need one of them ...
0
votes
0answers
17 views
change the default image background for MDI Application in netbeans
I want to change the default image background for MDI Application in netbeans.
I googled about it and I found this article :
How to change jdesktoppane default backgroud image?
I did the same but ...
0
votes
1answer
44 views
overlapping JPanels in the GUI
I am using BorderLayout in my application. I have a main panel to which I add two JPanels at the center. I want one of them to be transparent.
My code is :
mainPanel = new JPanel();
...
0
votes
0answers
65 views
Java Swing Not Rendering Correctly
I have been working on a project. In one part of the project I needed to draw on JPanel. Graphics2D object is passed to the model part of the framework and model will draw whatever it needs to draw at ...
-1
votes
1answer
46 views
double click on jlist in netbeans
I want select item in list by mouse. I found this code but it didn't work.
MouseListener mouseListener = new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
if ...
0
votes
1answer
36 views
Java swing - creating text field on button's place
When specific action is performed, I want to replace button with text field. I know that I have to call button1.setVisible(false); but I don't know how to create text field on the exact same place. I ...
0
votes
1answer
23 views
I cant go to design mode in netbeans(jframe)
I am building a GUI using swing Jframe. I am using netbeans, because it has this nice interface that allows you to create your GUI just by clicking. I once saved just the java file of the Interface. ...
1
vote
1answer
32 views
How to search a node in outline view in swing
I have implemented the outline view in my application which consist of 200 node. How can I search a specific node and expand it ?
I have also looked breadthFirstEnumeration() and ...
0
votes
0answers
44 views
i have made a java gui in Netbeans,but it is giving null pointer Exception when i use any button or field in my any Listener method
I have made my Java Gui In Netbeans,, in which there are buttons and text fields etc.... in my one action listener method, i have made a custom Jframe,, and it has a button as well, here is my code;
...
0
votes
4answers
72 views
BufferedImage isn't presented inside JPanel
I've tried to test the technique presented in ->this answer <-.
private void jButton1MouseClicked(java.awt.event.MouseEvent evt) {
BufferedImage img = new ...
1
vote
1answer
54 views
How to access jtextPane in a different form?
I am developing an application where, when I select a value(file) from list it should be opened in jTextPane of a different form. I am using two panels one is mainpanel where my list is shown and one ...
0
votes
1answer
71 views
Automatic made “main” class in new JFrame at netbeans GUI design
When I create a new JFrame in Netbeans there is a main class which has been automatically created. Even if I put it inside /* */ the code works fine. I learnt in any java program there must only one ...
-1
votes
0answers
24 views
Customized FormattedTextField within netbeans
First time posting a question over here !!
So here's my problem, and by the way, I'm using Netbeans IDE, this is my formatted String, it uses this format (aaa Tu aaaa)
As it is, it seems quite simple ...
-1
votes
1answer
30 views
Updating JList when elements are added froma different Jpanel
I have a problem with an application
I use netbeans GUI BUilder
I havea jList that contains elements I added element to this JList,
My program have two tabs, the first tab contain a jpanel that ...
0
votes
0answers
35 views
JCalendar Build
Using JCalendar, I have entered the following code from this site:
private void jCalendar2PropertyChange(java.beans.PropertyChangeEvent evt)
{
JCalendar jc = new JCalendar();
...
1
vote
1answer
49 views
Exception Adding elements to a JList
I'm writing code to retrieve data from a MySQL database.
I want to add one column of the query to a JList.
This is my code:
try {
ArrayList<String> names = new ArrayList();
...
0
votes
2answers
44 views
GUI not showing up initially (netbeans)
I'm very new to Java and even newer to NetBeans.. I just cannot figure out how to fix this issue..
When I run my project the GUI initially doesn't show up. There should be a menu bar with a drop ...
0
votes
0answers
65 views
how to delete items from a jTable in NetBeans
I have made a small program in which after pressing a button the orders made by one customer are displayed on a JTable in Java. I am using Netbeans.
The results visualized on the Table, for example ...
0
votes
1answer
33 views
Netbeans visual editor suddenly flawed
I am currently developing a small application for my exams next month. I am using the visual editor of Netbeans.
Suddenly it stopped working, giving me the exception at the end of the thread.
It ...
0
votes
4answers
48 views
jbutton changes text of text field
I am simply trying to make an employee clock. I have a keypad of numbers 0-9 and a text field. I want to be able to click the numbers and the numbers will appear on the text field. This seems so easy ...
0
votes
4answers
82 views
how to make jtextfield text disappear when tabbed into (Netbeans)
I'm working on a gui that has multiple textfields that the user enters data into. When the program opens, I have the instructions for what the user is supposed to enter into the textfield set as the ...
2
votes
1answer
46 views
jList not displaying data from custom model?
I'm trying to populate a JList through subclassing the AbstractListModel.I have looked through numerous places to try and find what I was doing wrong, but never managed to resolve the problem.So this ...
3
votes
3answers
74 views
How to make a toggle button toggled automatically
How to make a toggle button toggled automatically when someone types anything in text field??
i am using java Net-beans
0
votes
1answer
72 views
Generating code when using Netbeans Swing GUI builder
Is there a way to get rid of the designer after creating a Swing GUI using the Netbeans GUI builder, without having to copy the source code into a new class?
1
vote
2answers
50 views
Getting years from database
I have a database field of Date type in Derby. I need to get the years in all that are in the date. The program is in java swing. I tried the following code:
SELECT year(DATE) FROM BILLING
Then i ...
0
votes
1answer
92 views
Netbeans: Cannot add custom JPanel in Swing Editor
I'm having an issue with adding a custom JPanel to a JFrame in the Netbeans Swing Editor.
To rule out other issues, I made a brand new JFrame, and tried to drag my JPanel in (the JPanel is even in ...
0
votes
2answers
41 views
fill JComboBox with items from a multidimensional table
I'm trying to fill a JCombobox from items in a multidimensional table.
the items I trying to ad are the names of cities in that table.
this is my code :
String t21[][] = {{"Azores","Alaska","Pacific ...
1
vote
1answer
67 views
Switch between panes in JavaFX
I'm trying to make a Java program in JavaFX using FXML. However i'm having trouble with the layout management. I want to switch between Panes, just as i'm used to with CardLayout in swing, but i can't ...
0
votes
1answer
53 views
Java textBox.setText() error (too much text?)
I have a total noob Java question :|
When using the setText() method, I get this error
...
0
votes
0answers
30 views
Enclose In option greyed out in Netbeans GUI builder
Building a Java GUI application using Netbeans IDE. I have created a JPanel in it. After adding a lot of fields, I want to also add a JscrollPane to it. I have found that if we right click on the pane ...
1
vote
2answers
79 views
How to assign the enter key on my keyboard to a JButton
I have created a Jframe with a JButton for a specific action.
Now please I want a situation whereby anytime I hit my enter key on my keyboard it will perform the action I have coded in my Jbutton.
My ...
0
votes
1answer
38 views
Downloading JavaHelp library
I am developing a desktop application with java swing in NetBeans
I want to include an online help into the application by
integrating the javahelp library into the system.
The meta data for the ...
0
votes
0answers
46 views
jTextArea background not changing after setEnabled(false)
i have set setEnabled(false) for my jTextArea in a netbeans. The textarea is disabled but its background colour is not changing from white to a 'grayish' as expected. This only happens if i run my ...
0
votes
1answer
88 views
NetBeans default Jlist changing it into an arraylist
Basically, I have the default creator from the GUI Builder in NetBeans producing this code:
IPAddressList = new javax.swing.JList();
IPAddressList.setModel(new javax.swing.AbstractListModel() {
...
0
votes
0answers
35 views
Java netbeans GUI occuring error if manipulated
I am using Netbeans IDE, Why is that when I manipulate something on the design of application an error occurs in the code "sample error: non-static variable JTableSummary cannot referenced from static ...
1
vote
1answer
242 views
How to set relative classpath for jasper reports
I am creating a jasper report from a swing application.It is working fine when the absolute path is set but not generating one for a relative path. The java code for generating the code is
...
0
votes
0answers
40 views
BUILD SUCCESSFUL (total time: 0 seconds) but output is not displayed in netbeans
we have made a jpanel in netbeans under java application.first it was displaying error main method() is not found.we have added main method,while running the file BUILD SUCCESSFUL (total time: 0 ...
0
votes
1answer
25 views
Bind JPanel side with another JPanel Center
Hi I am building a UI for a project and I have a JPanel which I want to divide into two equal parts. I am trying to find a way to add two small JPanel inside the big one but I don't know how to bind ...
2
votes
2answers
45 views
How to set colour of text from a certain point forward
I'm building a small conversation agent, where the text looks like follows:
I would like to set the System's text to always be red. The text is all placed in a JTextPane.
How can I accomplish ...
0
votes
0answers
29 views
How to build custom control or graphical class in java (NetBeans6.8)?
Graphically Visible Class (in swing):
I am new to java but code allot in VB6.0. I am currently using NetBeans 6.8 on Linux.
In java, can you build the equivalent of a VB custom control and put it on ...
0
votes
2answers
184 views
How to set a textfield text from main method in netbeans?
I am new to NetBeans (but not Java) and I have a problem. I have created a GUI with NetBeans, which contains only a JTextField and a JButton.
I want to add text to the textfield from the main ...
2
votes
2answers
57 views
how can I define label position of a jRadioButton on Netbeans?
I'd like to define label position of jRadioButtons on a buttonGroup on Netbeans so the label would be positioned under its radioButton. Can it be done?
0
votes
1answer
193 views
how to set radio buttons initial value on Netbeans for a Java desktop application?
This app I'm working on has three radio buttons, but I need to open the JFrame with one of them selected and the other two not.
Upon the JFrame load, I call the following method:
private void ...
0
votes
1answer
40 views
My JFrame appears in basic design not in advanced design in java netbeans
Recently I made a desktop application for login system, I always run the program if i changed any code to be sure if this code is working well or not, Anyways when I run the program it always appears ...
0
votes
2answers
93 views
JPanel not showing anything
I have a problem with JComponent's inside a JPanel that are not showing up.
I am using Netbeans' Java GUI Builder partially to build the GUI.
I got a MainFrame class which is build with the GUI ...
1
vote
2answers
101 views
Make my Jlabel underlined
I tried to make a JLabel underlined I searched everywhere, I got nothing.
Even in the properties there is no option for underlining the JLabel.
What can I do
0
votes
1answer
113 views
Adding a video or animation to the jframe in netbeans
I'm trying to make an application in java netbeans, I want to add a video or animations which will be the background of my Jframe.
please advise
0
votes
2answers
131 views
adding action listener to a button in netbeans
How to add an action listener to a button in netbeans
I tried to do that, but I don't know how
button.addactionlistener(null);
-1
votes
3answers
84 views
Remove spaces from certain JtextField in java netbeans
I want to remove spaces from a JtextField, so when the user click the button it automatically removes the space from the text he/she wrote.








