Tagged Questions
0
votes
0answers
22 views
Having trouble with the getSource method on buttons
I have a GUI with 2 JButtons and I would like to know which one is firing an event by using the getSource method. I looked all over Google for a solution to my problem but couldn't find one, here's my ...
0
votes
1answer
23 views
Multiple JFrames, or JDialogs
From a variety of resources (this website, a book, a friend) I have managed to make a JFrame(JFrame1) that responds to a button. It makes another JFrame (JFrame2), and changes the JFrame.setVisible() ...
0
votes
0answers
20 views
KeyListener doesn't work on JFrame using BlueJ
I'm doing a college work about a game. I catch the events through a KeyListener implemented by the JFrame, and it sends the events to the panel shown.
This works perfectly on both Eclipse and as an ...
0
votes
2answers
32 views
Newbie: jTable right click popup menu
I am working on a project and I need some assistance. I have a SQL database and I am working on a program that will allow me to add/delete/modify records. I already managed to add records I am working ...
0
votes
0answers
26 views
Black border around image when dragged from MS Word to custom JTextPane
I am able to drag both images as text from MS Word to a custom JTextPane. However, when I drag a image and accept it using:
Image imag = (Image) data.getTransferData(DataFlavor.imageFlavor);
In ...
2
votes
4answers
68 views
GUI testing tool for Java based application [closed]
Requirements:
Maximum coverage
free license would be a big advantage
compatibility with different frameworks
it should work on old JVM (starting from Java 3).
What could you recommend me please?
2
votes
1answer
24 views
Can I mix Horizontal and vertical boxes in Java BoxLayout?
I have to make a simple program and the GUI would look like this:
,,,,,,,,,,
| Read | <---a Button
``````````
name |``````````| <---a Textfield
``````````
|
|
...
0
votes
1answer
41 views
JButton add Object
Is there a way to add an object to a JButton?
I know I did it some years ago in C# but does it work in Java?
public Shop(Item[] buyables) {
ArrayList<JButton> buttons = new ...
1
vote
1answer
24 views
Using Flow layout for Check-Boxes
I'm trying to use grid layout in my gui to align the Check-boxes one below the other in Jython, even if i use setLocation function, i can't align them properly, is there any other way to do that?
...
0
votes
3answers
41 views
Print the whole program layout
I have made a Java program (JFrame based) using Netbeans,
I would like to know if it is possible to print the layout of the program
I wish to have a button and set the function to "print"
and the ...
1
vote
1answer
43 views
Scroll a java 2d game tile map, while generating additional tiles
Finally decided to learn 2d (for now) java game programming. Am working on a game that has a central object that the user will guide with the directional keys. I have that working perfectly, cobbled ...
0
votes
1answer
33 views
Chat program freezes JFrame
I'm writing a simply chat client and am moving it over to a nice GUI. The constructor for the server side (client side is android) contains a list that's in the JFrame, and the first part of the ...
1
vote
3answers
21 views
Why am I receiving an Abstract Class error when I press the Applet button?
I am trying to create a button that once pressed erases the old screen and draws something new. I plan on drawing a room then adding a button onto a door. When the button on the door is pressed, it ...
-1
votes
1answer
32 views
How to send java application to system tray? [duplicate]
can anybody help me to send java application to system tray?I tried some ways but i totally failed.i want to send my application to system tray once it is opened because application should run in the ...
1
vote
2answers
49 views
Having trouble stopping the pieces in my Tetris game(Java swing)
I'm making a tetris game in Java, and I am having a little trouble making the current piece stop when they hit another piece that's already landed. I have separate classes for each tetromino shape. ...
0
votes
0answers
24 views
Java applet using JavaFx
I'm developing an applet. I want to use JavaFx to create the controls. Currently, I'm using An JFXPanel. Here is the code:
private JFXPanel jfxPanel;
private Canvas canvas;
private Scene scene;
...
0
votes
0answers
54 views
Make projectiles fire a certain direction
How to make projectiles fire a certain direction?
I'm making a small game for my Java class in which you play a small red square with a face and basically have to shoot oncoming shapes from the ...
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
1answer
25 views
A comparable sorter
I'm trying to get my code to compare the height of my randomly generated objects and sort them in ascending order. I'm currently having trouble understanding some basic concepts and as much as I read ...
0
votes
1answer
41 views
A main menu for class A extends Applet
Hi i have made a game in java that extends applet. The game works perfectly fine but one of the requirements of this assignment is that there should be a menu. For example: As the program is run a ...
0
votes
1answer
23 views
accessing gridLayout grids
So I'm using borderLayout panel with a girdLayout for the Center Position, I have added some objects to my gridLayout but latter on I would like to add some more information to the same grids.
...
0
votes
2answers
18 views
BorderLayout West Center East all Equal width
I am adding objects dynamically to panels then adding to the my border layout. I need the West, Center and East all to be equal size. This is what I have so far:
static int width = 300;//Screen width
...
0
votes
1answer
36 views
Adding a shape to class properties
I am working on a game which has a class Player, there are 3 subclasses of player. These are different types of players who have different methods and variables. Anyhow I want to give each player a ...
0
votes
2answers
63 views
Multi-threaded bouncing balls, issue displaying balls
I'm trying to use multithreading to draw balls that bounce around inside a JFrame. I can get the coordinates of each ball to update and print out, but I can't get the balls to display. I'm not very ...
1
vote
1answer
28 views
How to compute a path bounding box taking into account the Stroke
I am currently drawing a line using the code below and would like to get the bounding box around my path but if I call path.getBounds() I get a bounding box that ignore the stroke width and line join ...
2
votes
1answer
35 views
How to determine if GraphicsEnvironment exists
I have an application that needs user input for password.
What i want to do is to either read the password from console (if the OS supports one e.g unix) or display a JOptionPane and ask the user to ...
0
votes
2answers
27 views
Error java JFrame
I don't understand why my code isn't working, trying to print a rectangle in my JFrame, but keep ending up with an error on f.add(p);.
import javax.swing.*;
import java.awt.*;
public class SPEL{
...
0
votes
2answers
35 views
ClassCastException using JTable?
renbor = tabla_proveedor.getSelectedRow();
DefaultTableModel modelo = (DefaultTableModel) tabla_proveedor.getModel();
modelo.removeRow(renbor);
That line of code gives me an error, it gives me...
...
0
votes
2answers
28 views
Scrolling on JList without the scrollBars
I have this JList with the custom code uses ActionMapAction. now I can use the custom up and down arrow buttom But I cant use the scroll of the mouse to scroll up and down on the jLIST.
How can I ...
1
vote
0answers
52 views
Java GUI panel unable to refresh?
I have 3 panels in the frame, panel, panel1, panel2. When I click on the button it doesn't remove the panel from the frame.
private class ButtonListener implements ActionListener
{
public void ...
0
votes
0answers
27 views
Rect Collision rect.intersects(rect) does not work
Edit :
Got it to work by moving the rectangle objects into the ActionListener.
The problem was the the cords of the rectangle were not being updated.
0
votes
1answer
20 views
JLabel Move to Coordinate
What is the best way to make a JLabel automatically move to a coordinate location? Is there a predefined method for such task?
Example: instead of label.setLocation(x + 1, y + 1); (re-run to move)
...
0
votes
2answers
58 views
Game Of Life Java MouseAdapter doesn't always work
Sometimes the mousePressed event gets executed , but at other times it won't. It also seems to depend on the time you press it. How do I get it to ALWAYS work?
I'm not sure which part of the code is ...
0
votes
1answer
17 views
Is it valid to instantiate windowListener interface?
WindowListener is an interface? But how instantiation is valid as per the following? We can not instantiate interface right?
WindowListener l1=new WindowListener() {
public void ...
0
votes
1answer
22 views
Reset/restart my minigame using KeyAdapter with Thread on a JApplet
I can't seem to get my game to reset.
What I want to happen is once the numLives gets to 0 message should display:
press R to Restart
I added what I thought was a KeyListener for 'r' and it ...
-2
votes
0answers
31 views
Learning about keyListener in Java
I'm a kid that is trying to learn how to program in java and I recently started learning about JFrame and the GUI at my school. On my own, I learned about something called a KeyListener. In my ...
0
votes
1answer
59 views
Keeping a MouseListener always running
I have this constructor:
public Board(final boolean[][] board) {
this.board = board;
height = board.length;
width = board[0].length;
setBackground(Color.black);
button1 = new ...
0
votes
2answers
30 views
Checking if window has keyboard focus again
Preface
I'm designing an application which will at one stage have it's keyboard focus taken away and redirected to another application. The application in question is Google-Chrome. At this stage ...
0
votes
2answers
35 views
Problems with GridBagLayout
I cant transfer any of the relatet posts to my simple problem.
In order to get into GridBagLayout i wrote a simple example:
JFrame frame = new JFrame();
JPanel main =new JPanel();
...
0
votes
1answer
42 views
How to bring Swing window offscreen?
I work on a Java Swing application that allows displaying frames scattered on multiple screens.
The problem is, when in dual screen, a frame can be saved in secondary monitor 2 but when the ...
0
votes
1answer
59 views
Repainting/Revalidating JPanel wont work
I am unclear on how to repaint a JPanel in my existing code. I also dont understand how paintComponent is being called. Firstly, I would simply like to clear the JPanel but I cannot even do that.
I ...
0
votes
1answer
26 views
Dealing with a DragGestureRecognizer when it is no longer needed
How do I deal with a DragGestureRecognizer when it is no longer needed?
I'm using DragSource.getDefaultDragSource().createDefaultDragGestureRecognizer() to make sure that a custom DragGestureListener ...
-1
votes
1answer
34 views
Stop flickering/repainting
So I have an java.applet.Applet that is embedded into a JFrame. The applet uses a java.awt.Canvas for drawing.
The code would be quite a lot for me to post and there is no "Small" examples but here is ...
1
vote
1answer
35 views
Java AWT/Swing : paintComponent issue with custom JPanel(s)
Ok, so basically, what I have so far:
A main class that creates a custom JFrame (ApplicationWindow).
An ApplicationWindow class that extends JFrame and acts as the window.
A MapDisplayPanel class ...
0
votes
0answers
37 views
Create FormLayout rows and columns dynamically (at runtime)
Hello guys and ladies,
as I let the Eclipse WindowBuilder create me a JPanel with a FormLayout, I wanted to make this creation to be dynamical, because the program I'm writing needs it that way in ...
-2
votes
1answer
121 views
GUI for a simple banking project [closed]
I am new to java. I started a few weeks now teaching myself using online free tutorials.
I thought of a simple idea to create a little project for bank account transaction log, sort of.
As we keep ...
-3
votes
0answers
51 views
JScrollPane does not scroll to show all the components present in JPanel [closed]
emailClintt.getMailcaryingPanel().setBounds(110,110,340,570);
emailClintt.getMailcaryingPanel().setPreferredSize(new Dimension( 340,570));
final JScrollPane scrollp = new ...
0
votes
2answers
37 views
Drawing lines on a black JFrame
Im trying to use what I have learned the last six months of java programming to recreate the classic pong game. But drawing lines isn't one of the things, even if it seems basic.
public static void ...
-1
votes
2answers
56 views
How to add a paintComponent() to a JPanel
I have 2 classes, Class2 and Class4. I wish to add the paint in Class2 from Class4 onto a JPanel in Class4 using the p4.add(c2o) and f.add(p4) methods. I have no problems adding GUI but I simply ...
0
votes
1answer
35 views
Graphics.drawImage doesn't draw in Java
I am trying to draw images with g.drawImage(), However, it does not display on the screen. So can you please examine my code and tell me what the reason may be?
private char enemyBoard[][] = new ...







