Questions tagged [windowbuilder]

For questions about using WindowBuilder which is a Java GUI WYSIWYG visual designer plugin for Eclipse. WindowBuilder is composed of SWT Designer and Swing Designer.

WindowBuilder is a powerful and easy to use Java GUI designer that makes it very easy to create Java GUI applications without spending a lot of time writing code to display simple forms. With WindowBuilder you can create complicated windows in minutes. Use the visual designer and Java code will be generated for you. You can easily add controls using drag-and-drop, add event handlers to your controls, change various properties of controls using a property editor, internationalize your app and much more.

WindowBuilder is built as a plug-in to Eclipse and can also be used with the various Eclipse-based IDEs (RAD, RSA, MyEclipse, JBuilder, etc.). The plug-in builds an abstract syntax tree (AST) to navigate the source code and uses GEF to display and manage the visual presentation.


Related links:

646 questions
-1
votes
1 answer

My JLabel text will not change

I am creating a final project for my computer programming course, and have run into a strange problem that I'm hoping someone could possibly help me with. I am attempting to make a blackjack program which will run between two computers, but am…
user1964932
  • 11
  • 1
  • 2
-2
votes
1 answer

Windows style in Windowbuilder

Hey I coded a calculator. In the design Tab I set it to Windows but wehn I export it, its the nasty "Metal" theme. And it dosnt look like i designed it. Sincerely Jonathan The Eclipse View When I export it
Jonathan
  • 76
  • 7
-2
votes
1 answer

How to stop Java GUI without killing the JVM

I have a java console application that opens a GUI application that is on a separate class after the user gives a certain input. I want to return back to the console once I close the GUI which is achieved by pressing an "Exit" button that the user…
Anush Poudel
  • 45
  • 1
  • 9
-2
votes
1 answer

After run and close i cannot resize my gui anymore

I have been out for a while, not that i am a good programmer. But when i made an application window in eclipse (new--- other---WindowBuilder--swing designer--application window) this is the code it generates import javax.swing.JFrame; public…
cc2k
  • 351
  • 1
  • 2
  • 12
-2
votes
2 answers

NoSuchMethod exception with Reflection

I am trying to call a swing panel from a jar using reflection this is the code public class coolUI extends JPanel{ public coolUI{ //swing code here ( made by windowbuilder ) } } Here is the code that i use to call it from String className =…
J. Coco
  • 3
  • 3
-2
votes
1 answer

Java add components on WindowBuilder built GUI

I built a Java-Swing GUI using the WindowBuilder in Eclipse. But when I try to add new components using the .add() and .revalidate() nothing happens. If someone could help to fix this issue I realy would apreciate it. package Frame; import…
T.Furholzer
  • 199
  • 1
  • 8
-2
votes
2 answers

Java loop only if checkbox is selected

private void initialize() { frame = new JFrame(); frame.setBounds(100, 100, 148, 120); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.getContentPane().setLayout(null); JButton btnStart = new JButton("Start"); …
Lane will
  • 75
  • 9
-2
votes
1 answer

Message in Eclipse: "The file cannot be found"

I don't understand why is this happening, but as soon as I click "Aceptar" Eclipse minimizes and is impossible to work on that way. It started happenning since I started renaming some components but I don't think this could be a problem, wouldn't…
SergioMD15
  • 77
  • 1
  • 7
-2
votes
3 answers

Why isn't my file being appended?

Well, I brushed up on creating and writing to files in Java. However I can't figure out why my output won't write, my File file can't be found because it's being created/read in my main method, which, mind you, is in the same class. public class…
Cavasi
  • 1
  • 2
-2
votes
1 answer

How do I make a component like this in Eclipse Java WindowBuilder?

I would like to make such a tree-like component with many roots. What component should I use? JTree doesnt allow multiple parents.
-2
votes
2 answers

Search Box for Jpanel

I am in the middle of creating an app that allows users to apply for job positions and upload their CVs. I`m currently stuck on trying to make a search box for the admin to be able to search for Keywords. The app will than look through all the CVs…
-2
votes
1 answer

how to dispose() jFrame and setVisible() another jFrame?

I created a "application window" in a Eclipse and i used the following code to dispose 'frame' and open another jframe 'TableData' which worked as i expected. frame.dispose(); //private JFrame frame; TableData td = new…
Nawa
  • 35
  • 3
  • 10
-2
votes
1 answer

Why can import not be resolved?

I have the following import in 2 identical programs (ok, maybe they weren't identical. They looked identical, but I forgot that the first was created with WindowBuilderPro): import org.eclipse.wb.swing.FocusTraversalOnArray; In the first program…
George Tomlinson
  • 1,871
  • 3
  • 17
  • 32
-3
votes
2 answers

Looking for Free Serial Port library Windows 7

I'm looking for a free Serial Port library that works with Eclipse Helios, Windows 7 and WindowBuilder. Also, the library shall be easy to install and have a full example of usage. Due to project schedule, I can't afford to spend a lot of time…
Thomas Matthews
  • 56,849
  • 17
  • 98
  • 154
-4
votes
1 answer

display data from one window textareas into other window textarea in EclipseWindowBuilder

I am new to Java I created a conversion software for metric units and now I want to create new window for logging the output of converted units from one Window text areas into one text area in another window Picture of the application Both Windows…
1 2 3
43
44