1
vote
2answers
33 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
62 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
2answers
70 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
49 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
36 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
26 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
1answer
71 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
51 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 ...
0
votes
2answers
57 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
56 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: ...
-1
votes
1answer
153 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. ...
1
vote
1answer
127 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
127 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?
0
votes
2answers
67 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 ...
3
votes
2answers
240 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
141 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 ...
1
vote
3answers
86 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 ...
3
votes
1answer
210 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 ...
3
votes
2answers
150 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
165 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 ...
0
votes
3answers
55 views

How to open a new Window after y close a first one?

I'm working in this program in this the user is asked, for different types of data, but each type of data depends of the previous ones. So I created three frames, in which I place the first quiz, and ...
1
vote
4answers
188 views

Java GUI won't display JLabel

I would like to create a simple GUI in Java. I know the basics of creating JLabel, etc. However, I cannot find why my JLabel is not displayed on the screen. Here is my code: package test; import ...
-2
votes
2answers
166 views

want to do progress bar of swing on button click [closed]

Help me with this question. I want to add a proress bar on button click and while progress bar is running the main window(frame) should be closed or hidden. as progress finishes the main window ...
0
votes
0answers
53 views

Insert a Frame into the component hierachy of another frame

For some reasons (reparent a Xwindow on a Java Application) I need to add a frame into another frame... But it seems it's not possible. Is there any mean to insert a frame (in fact a heavy weight ...
0
votes
4answers
92 views

How to actually close a Window in Java?

I need to close a JFrame window so that the next call to access it catches NullPointerException.I tried frame.dispose() but, it did not work, I am getting back that window whenever I try ...
0
votes
1answer
507 views

Hiding a frame in java upon a button click

I am trying to hide a frame once a button is clicked. The "Register" button should open up a frame where a user can register, and that works, but I am trying to hide the previous frame and I can't ...
0
votes
2answers
190 views

Can't close frame in java?

Hi guys I am writing a little program in java and it's my first try at anything with an interface/picture. It makes the frame for me but when I click the close button X, it doesn't close it just ...
2
votes
3answers
152 views

Need help creating swing gui, Eclipse returns error when I set frame options (Java)

I have an application that does things with polar coordinates that is programmed in Java. I have to create a GUI for it and I decided to try to use swing components instead of this JAR called ...
1
vote
3answers
247 views

the images are not loading

The frame window is launching but the background and the foreground images are not loading and the window frame size is also very very small. Please help me to fix the error. here is the code posted ...
0
votes
2answers
1k views

When you use Frame or JFrame in Java? [duplicate]

Possible Duplicate: What is the difference between swing and awt? I often see that JFrame is used a lots. But sometimes, I also see that programmer use Frame in their example. So could you ...
3
votes
1answer
71 views

Centering the entire window Java

My question is quite simple I guess ... I would like to have my java Frame centered when I run my program. I used the following code : setLocationRelativeTo(null); Problem : This is the top ...
-1
votes
3answers
83 views

imaging processing programme [closed]

I want to make like acdsee programme using java programming language. this programme have some properties, like that, it is capable of black and white image, capable of mirroring and scratch on the ...
0
votes
2answers
108 views

Not waiting for a method call to finish before calling another method

I need a bit of help. I'm just after coming back to programming after being made unemployed. I'm trying to learn Java and I have run into a difficulty. The problem is that I want to call a method ...
0
votes
2answers
342 views

Jframe image + textfield

Hi i am trying to make a simple frame displaying an image a textfield and a button, but for some reason the textfield is invisible, since i am quite nooby at java and even more at these graphical ...
3
votes
1answer
111 views

how to resize the frame after an event happened?

I created a form to choose a database service such as SQL server and Oracle, and its version .then connect to it by clicking the Connect button....but before connection is made, some parameters should ...
1
vote
2answers
178 views

issue with java frame objects

I am working on my homework assignment. I have a main class that uses the following call to access the following JSplash class. JSplash splash = new JSplash(); However when I use that in my main ...
-1
votes
4answers
241 views

Adding a panel to the main frame

I have a main frame named as "frame1". In "frame1" i want to add a panel to display something on the panel but I am not able to add the panel to my main frame i.e "frame1" public void drawstack() { ...
1
vote
1answer
71 views

Not let the user unfocus the frame?

So you know how In Microsoft Word, when you go to File --> Options and it won't let you do anything else until you close it? Is there anything like that in Java?
0
votes
2answers
684 views

how do i make board for snake & ladder game in java?

I am facing difficulty in implementing the 10*10 board of snake and ladder game in java. I am not able to implement such a screen.What should I do? I tried implementing it with a image nd then moving ...
2
votes
2answers
774 views

java modal frame with maximize button

I wonder if it possible: to make a jdialog (which can be modal) with maximize button (is it possible to make custom but which will maximize frame?) or to make jframe (which has default maximize ...
1
vote
2answers
147 views

How to display frame only when required & set frame to appear on top all the time?

My program will alert users when data (stock name & price) in the database matches with the data (stock name and price) from Yahoo Finance. With the help of HarryJoy i'm able to implement a pop up ...
-2
votes
1answer
608 views

adjust size of frame components in swings when it is maximized

Hello Please tell me the code to size frame components in swings so that they get same screen percentage as provide before. I have used Three panels one main and other are subpanels.The main menu has ...
2
votes
3answers
648 views

Swing GUI - Creating a 'Settings' Window (Properly)

I am working on an application that uses Swing. I have successfully created a main GUI for the user to work from. However, I would like to allow the user to change his/her settings. How should I go ...
0
votes
1answer
68 views

Generate Textfield as per number given by user in java

Requirement is like: I want to take input values from user in frame but no of inputs is also decided by user. So first, In frame,I want user to write no of values in one text field so as soon as ...
-2
votes
2answers
896 views

Closing on a single window closes all the frames in java

I would like to make possible the navigation of frames in java.Whenever i close a frame the remaining frames which are also opened get closed;and the entire program stops. Please help...
0
votes
2answers
130 views

Button doesn't display

I have a strange problem... I have a JFrame and added two JInternalFrame I have added a JPanel to one of the internal frames. I used a mouse listener to the jpanel and wrote a code 'like placing ...
0
votes
2answers
94 views

Swing Methods on submission of button

How to close current frame (Frame1) and open a new frame (Frame2) already created and pass the data to frame2 from frame1 on the clicking of button?
2
votes
1answer
321 views

Java save and restore frame positions, sizes, and states

In C# .NET there is a built in Settings.settings file that allow to easily store form related properties such as positions, sizes, and states at user level. Is there something similar in Java ? Whats ...
0
votes
2answers
528 views

Auto suggested combobox in JFrame

I use the following code for retrieve the data into combobox. How to change Jcombobox into Auto suggested combobox . It means when I press A the words which are start with A that will show in the ...
0
votes
1answer
453 views

Add JFrame or JDialog to java netbeans application

I'm developing a java GUI application in netbeans 7, I have a window that process files (SingleFrameApplication), and I need to launch a login screen before this main frame, I don't understand how ...

1 2