0
votes
2answers
29 views

How can I create Scroll at Java?

Now I study about GUI (awt&swing) in java. But I don't know how can I make scroll bar. I try to find about that matter but still i don't get it. Could you give me simple explanation and example to ...
0
votes
2answers
37 views

JTextArea scrollbar

I have written a Java application that receives information from a server every 10 seconds. I am wanting to display this information on a form. Currently I am using a JTextArea. However, once the ...
-2
votes
1answer
30 views

building a java code on a linux server via a windows

I want to run my java project on a linux server via a windows machine and I'm using WinScp to connect to the server. Since my project has a simple gui, I got this error: "No X11 DISPLAY variable was ...
1
vote
0answers
35 views

Drawing frequently updated image in Java

I have experience in Java, but not in GUI's. Here is the problem. I have an image (or byte[][]), generated by my system, and I need to frequently redraw it. The image size is about 1500x500, and the ...
1
vote
2answers
42 views

Boolean var has different value then query filling it?

Alright guys, I'm absolutely speechless. I am building a GUI with the vaadin framework, but that shouldn't matter for the problem. Heres my Code: private final boolean readOnly = ...
-2
votes
5answers
40 views

Java Simple Layout [closed]

What is the best library to use in Java for a simple layout. Here is an image of what I am wanting to have on the form. I am looking for the most simplest layout library, that also has good ...
0
votes
2answers
24 views

ViewPager skip views on return leaving blank

I'm making an app with 4 main Views. I want that all of them stay on a LIST menu on top (That's ok for now). Using Fragments, I have the ability to change the view without actualy going to other ...
-2
votes
0answers
24 views

Any one has open source of GUI designed in Java Swing to share? [closed]

Without using GUI builder or other tools, just pure coding i would like to see code and architecture organization. Thanks in advance!
-1
votes
0answers
57 views

Decimal points in java GUI calculator and other questions [closed]

The calculator runs as it is, but I have a problem getting decimal points to work for my calculator, I have no idea how to do it, everywhere I look has something different. I also need the number and ...
2
votes
2answers
48 views

Create JTextField dynamically in a loop

I am beginner on Java GUI. I am writing a program that calculates the inverse of the given matrix. To do this, first i have to scan matrix. I decided to scan matrix by this way: First i am asking ...
-1
votes
0answers
39 views

an ending control for winning hangman

What would be a good control for if a user wins this game. I was trying to use this if(dashReplace(s).equals(s)){button.setEnabled(false); }. So if the replaced dashes equals the String s which is ...
0
votes
1answer
31 views

Spinner, add up/down arrow button listener

is it possible to add click listener for Spinner up/down buttons? I need this behavior, because when I add Modify or Selection listeners, all changes that I enter manually to the Spinner field are ...
0
votes
1answer
44 views

Impossible to add digits to the ArrayList despite using appropriate method

I am currently implementing a binary calculator as a part of my course assignment for Java Programming. I have stumbled across one problem I don't understand. In the code outlined below, I wanted to ...
1
vote
1answer
19 views

Abstract Error with JButton and Cannot Find Symbol on interface class

I'm working on a simple Java GUI, but an error came out about abstract methods. I marked the codes that has an error with a comment ERROR - etc. The interface class is at the bottom, which also has an ...
2
votes
1answer
24 views

Cannot get result of paintComponent() to display in panel

I'm banging my head against the wall and have a feeling that I'm going about this completely incorrectly. I'm creating a simple hangman game and cannot, for the life of me, get the result of my ...
0
votes
1answer
27 views

Building a music player for both android and Desktop at the same time

I'm going to build a music player working on both Android and Desktops. It won't be anything special, I'm doing it more to training myself and know more or less what problems I might encounter if I ...
1
vote
1answer
43 views

GUI thread updating issue

I have a GUI class Gui: public class Gui extends JFrame implements Runnable { private JPanel outer, inner; private JLabel[][] labels = new JLabel[22][12]; private Color[][] defaultMap, map; Thread ...
0
votes
2answers
33 views

Accessing Components in JFrame from External Class

I am having trouble accessing several components in a JFrame to use their setText("...") method. My main is in a seperate class, because the actual program has many windows that need to be managed at ...
-1
votes
1answer
26 views

Images replacement

How would i go about replacing the image called hangmanImg every time it go's through the loop? public void postImg() { String imgName = Integer.toString(numError); String hangmanImg = ...
0
votes
1answer
34 views

How to track Window close of SmartGwt

I am developing a SDI web app using SmartGwt. In the main window, I want to popup a Window, when a button is clicked. However when the popup Window is closed, the main window is not able to trap the ...
-1
votes
2answers
35 views

Style of the Button in SWT/JFace [closed]

I am new to SWT/JFace development. I am trying to change the style of the Button displayed in the JFace Dialog Box like color, font, size and add image to the button. for e.g; i have to create a ...
0
votes
0answers
30 views

drawLine won't show up

Hi I'm halfway through a simple GUI and can't seem to figure out why my drawLines etc are not drawing onto the page. I want to draw intersecting lines onto the DrawingPanel before adding a slider to ...
0
votes
1answer
28 views

Java reading and writing ArrayList type Contact to GUI

EDIT I've made several corrections and am now able to compile. When attempting to add a contact to the file I receive a null pointer exception at line 13 of the ContactsCollection class: for (int i ...
0
votes
1answer
26 views

Updated Information In JFrame

I have a JFrame "GameWindow" and a class named "Combat". I am trying to update various components in GameWindow (JLabels, JProgressBars, etc.) from variables in the Combat class. However, the details ...
0
votes
1answer
40 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
1answer
34 views

writing program in eclipse causes errors in command prompt

so I'm writing a program for a class and it needs to be runnable via command prompt. IE javac filename.java then java filename. I wrote the code in eclipse which is why I'm having trouble. My code is ...
-1
votes
2answers
33 views

Control order in Swing

So I'm creating a little java program with NetBeans' GUI builder. I have a whole bunch of labels (that happen to be icons) on the screen - and occasionally they will be sent to the same exact ...
0
votes
0answers
32 views

Open Matlab/Simulink file and select block from Java GUI

I would like to open a Matlab/Simulink file from a GUI (Java/Eclipse), select a certain block within the simulink model, and somehow get back the path of that block. I know how to implement a Browse ...
0
votes
0answers
12 views

Notify destroyed simulink debugger handle

I have a problem with my matlab implementation. I have a matlab m-file in which I open simulink debugger with sldebugui( 'Create', name ) command. I want to wait until the gui element is closed. ...
0
votes
0answers
18 views

How do I trigger GUI for NetCDF from Java source code?

I am working on NetCDF for the 1st time, my requirement is to trigger NetCDF GUI from java. Required libraries have been downloaded from the main page. Has anyone worked on NEtCDF and Java in Eclipse ...
0
votes
4answers
66 views

How to delete a class object? [duplicate]

I have an object called CounterGUI. It creates a GUI. I create it in another class, say MyProgram. Once MyProgram creates a CounterGUI object, how do I delete the object? Say if I do this: ...
4
votes
3answers
70 views

How do event listeners recognize specific events in each of their methods?

What I'm having trouble understanding is how exactly a method such as public interface MouseListener extends EventListener { public void mouseClicked(MouseEvent e) { //code ...
0
votes
3answers
50 views

Communication between GUI Java

I have three classes where i create objects that are JPanels ie MyObject extends JPanel. I call all three panels in a main method call. MyObject1 mo1 = new MyObject1(); // contains a textfield and a ...
0
votes
2answers
46 views

Java GUI (SWT) - display text while performing other actions like reading that text

I'm new to JAVA GUI. What I have is a java class which reads a text file. For each read line, this class (called X), writes a record on a database. This works without any GUI, only from a linux ...
0
votes
1answer
30 views

Creating généric GUI for several subclasses

I'm searching a clean pattern to solve the following problem: I have several type of vehicles (let's say Car, Bike and Truck, all these classes expand the abstract class Vehicle). Each type of ...
0
votes
2answers
33 views

ImageJ Overlay ROI zoom

Using ImageJ I would like to create a Zoom function for a ROI at a given location. so far I have something like this: imp = IJ.getImage(); ip = imp.getProcessor(); //fill pixel array with ROI pixels ...
0
votes
0answers
35 views

Using WindowBuilder Pro the design tab is missing several components

I'm doing a project using WindowBuilder Pro and all has been fine up until now. When I am in the "design" tab the preview of the GUI and the components view do are missing a lot of the components from ...
1
vote
1answer
49 views

Efficient dynamic-generated Java GUI

I am building a Java SingStar-like application, and I need some help since I am not very experienced with Java Swing despite all the basic knowledge about layouts and so on. My intentions are the ...
1
vote
3answers
24 views

Java - get errors propagated from background thread

I am trying to run a background service as part of my GUI application. I am using an ExecutorService and I am getting a Future back from it. This code shows what I am doing: play.addActionListener( ...
2
votes
2answers
42 views

Issue with resolving components - scope

private void initialize() { frame = new JFrame(); frame.setBounds(100, 100, 450, 300); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.getContentPane().setLayout(null); ...
0
votes
3answers
41 views

JTextField not accepting my text

So I have the following code, and whenever I run the program it gives me an error. It all seems correct to me, but it isn't. It is supposed to take the value of whatever is in the textfields and ...
-1
votes
1answer
40 views

ActionListener And JButtons

So I have the following code, and whenever I press the square tool button it should draw a square in the lefthand corner, but I can't even get the console to print its message. That makes me think ...
-1
votes
0answers
39 views

KeyListener Java not functioning

I'm writing a simple Pong game. I have a Paddle class that extends the JComponent class and a Player class that extends JComponent as well. I tried both p1.addKeyListener(new MoveButtons()) and ...
-1
votes
1answer
26 views

Open New Window And Close Parent

When my program launches, a window (aka "StartWindow") opens that has 3 options: New Game/Load Game/Exit. When New Game or Load Game is clicked (and after some input), the game window (aka ...
0
votes
0answers
20 views

Analog Clock with different time zones

i am trying to build an analog clock with different time zones but i am getting errors. I wonder whether i can use my iListener like the way i used now. I want to obtain different time zones by ...
0
votes
1answer
22 views

Ensuring a size is a factor of the screen size

I have a GridView in Android which objects change size during a screen rotation. I also want there to be no gaps in between the objects. I want each View to be around 150-200dp. At first, I was ...
0
votes
1answer
21 views

Animation not working unless you are resizing the frame

I have this GUI class in Java: import java.awt.Graphics; import java.awt.Color; import javax.swing.JFrame; public class GUI extends JFrame { private boolean[][] board; private int width; ...
9
votes
1answer
1k views

Simple GUI Toolkits For Use With Clojure

The long and short of this question is which GUI tool kits create very simple UIs and are easy to use work with Clojure? Here are further details to narrow down my question. I want to create very ...
9
votes
3answers
4k views

How does the event dispatch thread work?

With the help of people on stackoverflow I was able to get the following working code of the simples GUI countdown (it just displays a window counting down seconds). My main problem with this code is ...
3
votes
7answers
8k views

Design a GUI for a J2ME app

How do I create a J2ME app for cellphones with a GUI similar to the menus you see in Java games? I've tried MIDlets with Netbeans but they only show you one GUI element at a time. (textbox, choice, ...

1 2 3 4 5 88