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
2 answers

Using windowbuilder to learn swing. A bad idea?

I started to play arround with windowbuilder and I have already built a few basic GUI programs. However, I was wondering if I'm doing myself a disservice by learning swing this way instead of building everything myself, without using any plugins? I…
FlickIt
  • 71
  • 1
  • 7
-1
votes
3 answers

How to instance a JPanel into panel in Jframe

Sorry if I might mix terms up. So I have a basic application where I would press the button and Jpanel1 with a label in it, would then switch/replace to JPanel2 that'll have a picture in it, all within the panel. The JPanel inside the box would…
-1
votes
1 answer

Calling another JFrame after veryfing user identity

any help would be greatly appreciated. I've created 2 JFrames, one is a login window which verifies user credentials and I've linked it with my website's mySQL(This works and was hard since I'm very new to Java), and the other one is my main window…
ADSquared
  • 207
  • 3
  • 12
-1
votes
1 answer

Best way to display array list in window builder

What is the easiest and best way to display array list in window builder? I'm trying to create simple application to manage database. I have managed to create very simple version with text fields for each part of array list, but i want to go step…
John
  • 21
  • 3
-1
votes
1 answer

Add a String Array to a JList

I'm trying to put my String Array in a JList but nothing happens. What am I doing wrong? JList list = new JList(); list.setBounds(22, 111, 190, 395); jpPanel.add(list); btnTestList.addActionListener(new ActionListener() { …
eyelash
  • 112
  • 1
  • 1
  • 11
-1
votes
1 answer

How can I have access to the same object from different classes

How can I have access to the same object from multiple classes? I'm making a Java app for bookstore management using window builder, there are different types of users, and different panels for each user. I need to have access to an updated object…
eyelash
  • 112
  • 1
  • 1
  • 11
-1
votes
1 answer

Windows 7,8 or 10 like Java Calculator with WindowBuilder

So I have some kind of impossible task, atleast for me. We got the task to create a Calculator with the Java WindowBuilder that looks and functions like a Windows 7,8 or 10 calculator. I'm not asking for a whole source code or something, but does…
bmc444
  • 1
-1
votes
1 answer

Make an JLabel move with Key Bidings

I have a short script made in swing, people keep telling me that I need to use Key bindings to get the Jlabel to move but I can't figure out how to do it. anyone have any idea on how to implement Key bindings in a way it works that does not use a…
-1
votes
1 answer

My jTable is not showing any coloumn headers

I am trying to add a jTable in my class MyPage which has a tabbedPane in it. I am able to call my jTable in it and the table is perfectly visible but the column headers are not. I have even tried to add my table in a scrollPane but that also doesn't…
-1
votes
1 answer

How to open another form from a JButton

This is a very basic Java syntax question. I have a form called frmMainMenu in its own class, and that has a button labeled "Schedule". When you click "Schedule" I want it to open another form. That one is in a separate class called frmSchedule. In…
Michael T
  • 1,745
  • 5
  • 30
  • 42
-1
votes
1 answer

Java Eclipse WindowBuilder - where is the user interface?

I installed WindowBuilder and I'm trying to start using it. The instructions say "Choose an appropriate layout manager for your window." but don't say how to do that. There is supposed to be a "palette" somewhere in Eclipse but I can't find it…
Michael T
  • 1,745
  • 5
  • 30
  • 42
-1
votes
1 answer

Eclipse WindowBuilder: Ignore runtime paint() code

One of the JPanels in a swing GUI I am designing uses AWT graphics for drawing figures that are only drawable at runtime. Eclipse WindowBuilder no longer wants to draw any of my swing GUI as there are now null pointer exceptions in the awt paint…
Andy
  • 237
  • 3
  • 14
-1
votes
1 answer

Use window builder jframe in a different class

I am trying to use a gui i built with window builder in eclipse using jframe. I have tried to call the method Ftwo(); in my main method and i imported the class but it does not recognize the method thanks package com.cameron.main; import…
ThatPurpleGuy
  • 426
  • 7
  • 20
-1
votes
1 answer

show dialog in rcp 4 eclipse

I'm new in the eclipse rcp development. I'd like to create a method that show a dialog windows. I created a a dialog in Application.e4xmi and I'm not able to show that using command with execute method. Somebody can help me?
-1
votes
2 answers

Creating Multiple Choice Test with WindowBuilder (Java)

I am creating a Multiple Choice Test with WindowBuilder for a school assignment. I am nearly done, however, I am having trouble with keeping score. The score does not seem to add up. I'm using two classes to create the multiple choice test. If…