I've got a problem with my home made game. When I created it as a JFrame application it runs smoothly, but when I tried to convert it to a JApplet the graphic is "lagging". I can see the graphics blinking/flashing .....
Here is the code:
public class FallingBalls extends JApplet implements KeyListener, ActionListener { // VARIABLES // boolean gameOver; boolean win; // Buttons JButton start, pause, restart; // Character "The Runner" (32px x 32 px)
Is it possible to create a JInternalFrame class with additional public functions that can be called from the desktop? Here is some snippets of the code. This is the Internal Frame with the public functions added after the constructor.
public class Search_Ifr extends javax.swing.JInternalFrame { /** * Creates new form Search_Ifr */ public Search_Ifr() { initComponents();
[code].....
The line " ifrSearch.setTabPaneIndex("tabCust");" is throwing a compile error that the method is not found.
I got a JFrame with its JDesktopPane, and opens a JInternalFrame at the beginning of the execution of the application. That's all fine.
And then, the first JInternalFrame opens another JInternalFrame in its maximum size, and that's when a simple JLabel that I got o the second internal it disapears. Why?
I am in the progress of updating my code and re-testing after switching from Java 6 to Java 7. When I open multiple JInternalFrames in my application under java 6 I am used to closing the top most internal frame and having the frame immediately under it become the next active frame. When I run the same code under Java 7 I see a different behaviour in as much as when I close the last frame I opened, the next one to become active is the first one.
To illustrate this another way, lets say I open 5 internal frames, 1,2,3,4 & 5
In java 6 when I close frame 5, frame 4 becomes the active frame.
In java 7 when I close frame 5, frame 1 becomes the active frame.
I'm having issues with providing focus to keyboard buttons when a JInternalFrame with keyboard buttons is called in my program. So for example when the program is started the attachment called signinscn.png is called.
This screen is a JDesktopPane which calls JPanel for its components.
From here a JInternalFrame containing the buttons ESC and F1 to F4 as seen in the attachment called signinscn.png is called.
I would like the buttons in my JInternalFrame to have focus such that when a user engages the equivalent keyboard button i.e. ESC or F1 to F4 WITHOUT clicking on the JInternalFrame the respective button's action listener kicks in. At the moment only after the user clicks on the JInternalFrame do the equivalent keyboard buttons respond.
Here's the constructor of my JInternalFrame and you can see how I handle the ESC keyboard button in the constructor of the JInternalFrame (but as I mentioned only after the user has engaged the JInternalFrame):
I am developing an application to share my client screen with server, it is working well on swing. But i want to develop as web application, i am trying to using applet. But i am facing the fallowing problem..,
1) The Applet screen also open and project also running well on server mechine. But unable to see the client screen on the server.
2) The problem may be to display the JDesktopPane or JInternalFrame.
My working Server Code extends withe JFrame..Java Code:
Why in my program keys are not working, what I forgot to write?
import javax.swing.JFrame; public class Main { public static void main(String args[]) { JFrame frame = new JFrame("Stickman"); frame.setDefaultCloseOperation(frame.EXIT_ON_CLOSE); frame.setSize(450, 490);
I am working on a fairly simple program where I have a colour change three times using the red green blue spectrum. The problem is that I keep getting a result of zero no matter what I do.
import java.awt.*; class RectangleMain { public static void main (String[] args) { ColouredRectangle blocky = new ColouredRectangle(50, 100, 20, 40, Color.red); System.out.println(blocky.getColour()); blocky.mixColour(Color.blue);
I'm programming a game, but the keyListener doesn't work. Here is the source code:
import java.awt.event.KeyEvent; import java.awt.event.KeyListener; public class InputHandler implements KeyListener{ public InputHandler(Game game) { game.addKeyListener(this);
[code]....
My Question is: Why will it not say "up", if I press "w"?
I'm having a problem where an if statement isn't working. In the Person class boolean olderThan ignores my if statement so it always returns false and I just don't get why that's happening.
import java.util.Calendar; public class Person { private String name; private MyDate birthday; public Person(String name, int pp, int kk, int vv) { this.name = name;
I have added a Simple Jar file in Eclipse Proect->BuildPath->jar file but class Inside that are not showing in My project this is my Project Structure and I have all ready checked in Order and Export..But jar file is not working.
I am learning out design patterns and doing a little fun project on Model Control View (MCV). I got the concept down, it is pretty simple for the most part. However my buttons are not working.
Here is the code:
public class Controller { private Model model; private View view; Controller(Model model, View view) { this.model = model; this.view = view;
[code]....
It runs but nothing. My other questions is how can I make a box that will print the results.
I need to find out if one array list is a sub-sequence of another. The elements in the first list all need to be in the second list and must be in the same order. So s1<n, t, a> is a sub-sequence of s2<q, n, f, r, t, d, a>, but s1<a, a, t> is not a sub-sequence of s2<a, t, a>. I need to use iterators to go through each list, and I should only go through each list once (since it has to be in the same order) so nested loops don't seem like they would work because it would start at the beginning of one list every time it moved to another element in the outer loop's list.I seem to have an issue where the itr1. next() is ignored when in an if statement.
My current code just stalls and will never stop running. I've also switched things around and put the not equal check after the if it is equal and it throws a NoSuchElementException.
import dataStructures.*; public class Subsequence3 { public static void main(String[] args) { ArrayList<Character> s1 = new ArrayList<Character>(); s1.add('n'); s1.add('p'); s1.add('a');
the problem which im facing when executing jar file is it is not working same as when i run file using the IDE.When run jar file, it won't open the new frame even the user and pass combination correct.But when i'm compiling using the IDE, it works as charm. The main menu popped up after i logged in.I've tried Clean and Build and it's not working too.
I code a program using Eclipse Keppler with Java 8.0. I made a program with 2 JPanel. The first JPanel is working well. From a button in first JPanel, I excute second JPanel, but It is not working. No error when I compile the code. Here is, I attached the source code.
working on a project but cant seem to get my while loop to restart i want to restart this guessing game if the user inputs y at the end otherwise it will end.
import java.util.Scanner; import java.util.Random; public class GuessingGame{ public static void main(String[] args){ Scanner in = new Scanner(System.in); String again = "y"; while(again=="y"){
i am trying to make taxi meter which shows the current price.Rightnow I have to click startmeter afterevery 1 minute than it's update the new price but I want it to update automatically once the price change after 1 minute instead of me pressing startmeter everytime.This is my 1st time I am using timer class. I am not sure why timer is not working.
i have a problem with the jsf 2.0 version with inplace select,in jsf 1.2 it was working, but in jsf 2.0 it is not
problem: when select one of the item in inplace select dropdown,I am trying to update it with the selected value using the a4j:ajax tag, using but the control is not calling the update() method
<rich:column id = "locationClmn"> <f:facet name = "header"> <h:outputText id = "LocationHeder" styleClass = "headerText" value = "#{messagesRefdata['notifications.locations']}"/> </f:facet> <c:set var = "locations" value = "#{notificationConfigurationBean.listOfLocations(ntc.notification)}"/> <rich:inplaceSelect value = "#{ntc.location}" showControls = "true"
[code]....
I have even tried f:ajax, execute= "@this", immediate = true.
there is no divider in the operation. Iadded a print i to confirm the loop works. I tried with and without the brackets..Can you use the i in the operations of the loop? I figured I could since printing it out give me a list of numbers
public class harmonique { public static void afficherHarmonique( int wholeNumber ) { int harmonique = 1; for( int i = 2; i <= wholeNumber + 1; i = i + 1 ) { System.out.println ("i =" + i); harmonique = harmonique + (1/i); System.out.println ("harmonique =" + harmonique);
Currently the while near the end is not working in netbeans. It is saying illegal start of type. This whole section was working before when it was within the public static void method. I moved it to a separate class to try and clear up a, static variable problem. My question is can i fix it to keep it structured this way. Or do I have to put it back into the main method and try to work out the static variable problem a different way.
public class InventoryProgram { double[] dvdprice; // defines variables int[] dvdnum; int[] dvdstock; String[] dvdnames; int count; double total;