1
vote
1answer
44 views

JDialog and disable main window

I use JDialog in my project. When I click button in main frame JDialog frame appears and main window becomes inactive. Is there any possibility to remain main window active?
0
votes
1answer
15 views

JFrame content area size wrong after pack and visible

I think there is a bug in Java's calculation of the total size of a window, where it adds the top and right border values a second time to the overall window size. I apologize if this is a known ...
0
votes
1answer
33 views

JPanel rendered behind the paint() method

I am trying to create a board game. The left side of my windows is my actual board game while on the right side I was going to have a few buttons and timers. I paint my board using the paint method ...
0
votes
0answers
36 views

How to make frame always visible regarding of other frame overlapping it using Java Swing?

Using Java swing, I would like to create an invisible frame with some visible pictures. I would like to let this GUI stay visible (frame still invisible, so only pictures) when I open another ...
0
votes
1answer
60 views

Button New Game not working Java [duplicate]

Hi im making a project for my studies and im new in java. I need to do a game - Arkanoid. What i wanted to do is a game manu with 2 buttons "New game" and "Quit". Someone from stackoverflow.com ...
0
votes
4answers
72 views

Java JButton - making simple menu

Hi take a look on this code: package arkanoid; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JPanel; import java.awt.Color; import java.awt.event.*; public class Arkanoid ...
-1
votes
1answer
31 views

Swing Popup Frame

Hello i have a program that should create a popup when the button is pressed and popup should contain text fields and buttons.I searched but i only found JOptionPane but it does not contain more than ...
1
vote
1answer
84 views

Using Browserfield.displayContent with <frame> that has an external url

I am trying to create a screen for a blackberry 5.0+ app that has a banner at the top and then a Browserfield underneath that views an external site. The banner is hosted on one site and the content ...
4
votes
4answers
63 views

Getting a value/Returning something each time a thread executes its run

I have 2 threads running. One is a TimeStepThread, the other is a CarThread. The CarThreadruns every 500ms. The TimeStepThreadruns at whatever interval I give it. Now, each 500ms, the CarThreadupdates ...
0
votes
0answers
90 views

Selenium ide generated code does not indicate what frame

I have done several selenium recordings and played back in java and a common issue is that the play back will say find by locator of something and I would get an exception of not found. It was ...
-1
votes
1answer
68 views

Add a scrollbar/scrollpane to frame in AWT

Hi I'm a final year engineering student, and though I have learnt java, my knowledge in its application is rudimentary. However, I have to use java for my project. This is the front end code which ...
1
vote
2answers
89 views

Getting Applet not initialized error

is everything is right in my programme?? When i run it the a screen appears but it says that Applet is not initialized import java.applet.Applet; import java.awt.*; import javax.swing.*; public ...
-1
votes
1answer
79 views

Running an executable (.exe) within a JFrame [closed]

I am currently working on a project in Java where we have to use an avatar created by someone else. This avatar is a graphical executable. It communicates with the Java application through xmlrpc. I ...
0
votes
0answers
31 views

How to add another Frame to the Frame

I have to use Frame not JFrame. I have to use BorderLayout. I created a class A extends Frame{} class B extends Frame{} and I woule like to add instance of class A into class B but what I get is ...
0
votes
2answers
110 views

Java GUI Action Listener with Inner Classes

I am working on a LAB for one of my classes and am in need of some assistance. I am building an Apartment Complex GUI which will have a menu system and individual functions between many different ...
0
votes
1answer
65 views

Multiple Jpanel keylistener space

I have a frame which contains 4 different panels.One panels contains a music player which on pressing space key start playing the music while other 3 panels contains textfields and some submit ...
0
votes
1answer
45 views

Can't see all the text in a java frame

I have a problem I can't fix. I am really new in programming. The main frame (glavnoOkno) opens normal. When the button on the main frame is clicked new frame opens. And you can't see all the text or ...
0
votes
2answers
27 views

JAVA SocketServer with frame

I'm trying to make Java socket Server, which has frame, where messages are displayed. But when I run the server from frame constructor, the frame don't become visible. There is part of my code: ...
0
votes
0answers
35 views

How can I load html with contents of frames?

I try to put HTML code from websites into a string. The HTML should also contain the HTML of its containing frames. Basically it should include everything which you see in the developer tools of ...
0
votes
1answer
95 views

repaint of main panel not working properly when using an internal frame

I'm having the following bug/problem and I havent been able to found solution yet on web or example of someone with similar issue.Basicaly I have a main frame that contains a panel of the same ...
-4
votes
1answer
58 views

Java : Frame responds on pop-up action. how? [closed]

in my frame A JTable and SAVE button is there. i enter data into JTable and save it to the DATABASE. in my current programe: When i clicked "SAVE" button it checks the data and pushes it to ...
1
vote
2answers
41 views

Align panels with backgrounds correctly?

I recently started with Java GUIs a few weeks ago and I have a difficulty with alignment. Basically, I'm trying to have two Panels with a different background image (top Bar and content) and I want to ...
0
votes
2answers
70 views

How to close a frame on action event of a button from a different class?

I have a designed a control-frame on 1 class which has jbutton components, I have coded like on action event of these components diff-diff frame get initialized. For each frame there is a class. now ...
0
votes
1answer
68 views

How to construct my graphic structure in Java using Swing?

I was wondering if you could help me out with the structure of my program. I'm making a game with Java and I have 2 classes. 1 class is a graphics class that extends JFrame with a paint method: ...
0
votes
2answers
69 views

when generating images on jframe with for loop, why does it stop in the middle of the frame?

So I was trying to make a simple PacMan clone, and I've gotten to the stage of adding images, etc. I have two images (so far) which are: and , trackball.png and border.png. So I run the code below ...
0
votes
1answer
298 views

Which icon sizes to use with a JFrame's setIconImages() method?

Does anyone know which icon sizes to use with the setIconImages() (PLURAL) method for a jFrame so that my app icons display well on all platforms and in all contexts (e.g., window icon, taskbar icon, ...
0
votes
1answer
66 views

Can't reposition One textfiled in Java AWT

I am trying to make a login form using Java AWT. And i made it. But when i click button, all filed except "Pin" displayed in correct places. "Pin" was displayed in the same dimension as of "Name". I ...
-3
votes
1answer
118 views

Need a Java program to create a frame with 4 fields;name,sreet,city,pin;with suitable table [closed]

I want to write a Java program To create a frame with 4 fields;name,street,city,pin;with suitable table. Also add a button "OK". when it is clicked, corresponding values to be appeared in ...
-1
votes
1answer
167 views

Core Java project about JFrame

I am making a small Java project in which there are 3 frames connected together, say f1, f2, f3 & f4. f1 is having a button and after clicking it it calls f2 and f2 also has button which calls f3. ...
-5
votes
2answers
172 views

Netbeans desktop application of teacher attendance [closed]

i use netbeans. i made a java project of making attendence by teacher. everything is ok. but the problem is when i maximize that application then all the textfield,label,button's sizes get disturb, ...
1
vote
1answer
170 views

java single frame application

I need to create an application with single window and without any popups. Everything works using same window and only changing content. I am going to create application using swing. I have read ...
1
vote
5answers
157 views

Clicking a JLabel to open a new frame

I am designing the graphics for a game i am programming, i wanted to know if there is an easy way of opening a frame when a JLabel is cliked? Is there easy code for this?
1
vote
4answers
191 views

Doesn't show dialog

import java.awt.*; import java.awt.event.*; import java.lang.*; public class Party { public static void main(String[] args){ System.out.printf("Start\n"); Frame f = new ...
0
votes
0answers
86 views

I need my applet to run as a stand-alone program

I designed a game using Applet (not JApplet) and I am selling the game to my friends but, I don't know how to get my game to run as a stand-alone program. I have tried many things such as: ...
0
votes
1answer
17 views

Lout Manager for re-sizing of panels

I am making a gui application where I need a wide panel on one side of the frame, and a thinner panel on the other. The panels are the same height, but when I re-size them I want them to keep a ...
0
votes
2answers
71 views

Why is my frame empty?

i tried for 2 hours to make a JEditorPane with a Scrollbar and i am about to give up! This is part of my code: JEditorPane editorPane = new JEditorPane(); URL helpURL = GUIMain.class ...
0
votes
0answers
56 views

How do I make this run solely in the Console window? or can I make the Frame window hidden but still functional?

If you're not familiar with HoltSoft's Ready To Program, and the console class within it, this is not a question you can answer. Please don't suggest using anything from javax.swing, or anything that ...
1
vote
1answer
96 views

GWT hide a frame

I have a frame panel Frame frameExample = new Frame(); I need to hide the frame when I click on it, I know the method setvisible frameExample.setVisible(false); But how can add onclick handler ...
3
votes
2answers
284 views

magnetic effect to attach window dialog or frame to another

I have to windows (JFrame and non-modal JDialog) and I want to attach the JDialog to the JFrame, so that when I move the JFrame the JDialog is also moved. The synchronous movement itself is NOT the ...
0
votes
1answer
145 views

Multiple jAppletForm in a Java applet

I've created a new Java project without main class in NetBeans and then I've added a jApplet Form (let's call it MainWindow.java) to my project package. After that, I've added few other jApplet Forms ...
2
votes
1answer
518 views

Slick Animation - There must be one duration per frame

I am trying to make a game in Slick, and before I start I want to test the helicopter animation I will be using. It just opens and then immediately closes with these errors: Exception in thread ...
1
vote
3answers
93 views

How to disable a JPanel from doing anything in Java

I have a problem with disabling a JPanel from having any methods called inside of it. I set up a Frame with 2 JPanels controlling the graphics for the Frame. The problem is, if I a new JPanel to the ...
2
votes
3answers
589 views

Extends Frame class in main method's class

Today when I was reading my lecture notes, I don't understand what the purpose of extends is in this context. Consider this code: import java.net.*; import java.awt.*; public class QueenApl ...
3
votes
1answer
235 views

Adding Image over a Transparent JFrame

I want to display an image over a transparent JFrame. The image is not shown clearly. If I add any component like JButton or anything else it is displayed well except any component which has image ...
0
votes
0answers
68 views

How to make generate a framed picture wallpaper? [closed]

i am quite new to Android development. I am trying to develop an app to put an image inside a frame, and rotate it or resize it. The frame will be static, but the image will be loaded from the SD ...
0
votes
2answers
325 views

Java graphics drawing doesn't show up on drawing panel

I'm starting a really simple java program. The user can select a shape, size, fill (boolean), lineColor and fillColor from a menu, and then click and drag to draw the selected object on the screen. ...
3
votes
2answers
175 views

Is it possible to perform some action BEFORE a JFrame is minimized?

In Swing, there are several ways to capture the event of minimizing a frame (iconifying), but the event happens when the frame is ICONIFIED which means after the frame becomes invisible from the ...
0
votes
1answer
179 views

Using Actionlistener to create new frame with JRadioButtons

Hi I'm having some trouble creating an actionlistener which creates a new frame with JRadioButtons used as selections. Ultimately it will be a flashcard quiz program I am creating for fun. Here's ...
1
vote
1answer
31 views

when timer is 0 change frame

I made a timer and when it is 0 I want to change frame. It works but the same frame keeps pop up and doesn't stops. Check out the if and else part. class SetTimer { private static final int ...
-3
votes
2answers
205 views

Moving the camera inside a Frame in java

I would like to know how to move the camera inside the Frame in java. Ex: frame.moveInsideFrame(pointX,pointY).

1 2 3 4