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
33
votes
7 answers

Unable to connect to database (No suitable driver found)

My connection code: try { Connection con = DriverManager.getConnection("jdbc:sqlite:myDB.sqlite"); PreparedStatement pstm = con.prepareStatement("insert into hell(username,pssword) " + "values…
Fenrir86
  • 353
  • 1
  • 3
  • 4
28
votes
2 answers

How to add tabs to JTabbedPane using WindowBuilder

Ok so I've recently found out about WindowBuilder (Eclipse IDE) that aids in faster creation of Swing applications. I have a added a JTabbedPane using the drag and drop facility. How can I add tabs to it? I have gone through the properties but I…
Saurabh Jain
  • 1,600
  • 1
  • 20
  • 30
21
votes
3 answers

Installing WindowBuilder on Eclipse 4.2

I'm using Eclipse Juno 4.2, downloaded from here. On previous installs, I've been using 3.7, and I've been using WindowBuilder, which I find very useful. I noticed it wasn't included this time, so I used this update site provided on this page (the…
wchargin
  • 15,589
  • 12
  • 71
  • 110
17
votes
4 answers

How to add row dynamically in JTable

I want to add the row dynamically in JTable and I have writen the following code for that: tblTaskList = new JTable(); tblTaskList.setShowVerticalLines(false); tblTaskList.setCellSelectionEnabled(true); …
Uday A. Navapara
  • 1,237
  • 5
  • 20
  • 40
16
votes
6 answers

How do I add an icon as a classpath resource to an SWT window created with WindowBuilder?

I'm trying to add an external icon from an *.ico file to a window that I'm creating using the WindowBuilder design window. I can select the shell, which brings up an "image" properties field. That brings up the image chooser dialog box: How do I…
Zoot
  • 2,217
  • 4
  • 29
  • 47
14
votes
3 answers

Installing WindowBuilder on Eclipse Neon

I'm using Eclipse Neon, that I installed from Eclipse Installer.The problem is when I want to work with Swing, I did not find it. And when I tried to installed using this solution, I did not find it in the repository of neon. Can Anyone help ?
Bilal
  • 2,883
  • 5
  • 37
  • 60
13
votes
1 answer

Can you zoom the windowbuilder in order to see more of your design?

I am working a project on windowbuilder of eclipse. My frame is fullscreen so it does not fit in the design page of WB. The same problem also happens with JScrollPanes, in the design-view of Windowbuilder you can see the scrollbars, but you cant…
user3309479
  • 329
  • 1
  • 5
  • 17
13
votes
5 answers

Is WindowBuilder Pro already installed in Eclipse?

At this page: https://developers.google.com/java-dev-tools/download-wbpro, there is no option to install WindowBuilder Pro to Eclipse Juno (4.2). Is WindowBuilder Pro already installed with Eclipse Juno? Also, is there a better free alternative to…
Chin
  • 19,717
  • 37
  • 107
  • 164
13
votes
3 answers

What is the difference between the release and integration versions?

I just grabbed the JDK & eclipse classic and I am trying to figure out which one to use for installation. What is the differences between the release and integration versions provided by eclipse.org: http://www.eclipse.org/windowbuilder/download.php
Brian
  • 1,245
  • 2
  • 10
  • 8
10
votes
4 answers

Change state of toggle button from another button

I'm creating a Java GUI using Swing with Eclipse and Window Builder Pro. I'm using JButtons and JToggleButtons. I want to change toggle button's state from another button. For example, when I click the clear grid, all the toggle buttons will be…
Ömer Faruk AK
  • 2,409
  • 5
  • 26
  • 47
10
votes
2 answers

Some tutorials with Eclipse/WindowBuilder Pro

I am looking for tutorials about how to write a rcp program with window builder pro, any resources links, OK? Thanks a lot.
liunx
  • 751
  • 4
  • 13
  • 32
10
votes
6 answers

How to add text to JFrame?

So I am designing a JFrame using Eclipse WindowBuilder. This specific frame is an error message stating that the user provided invalid credentials. I have added a button to exit the frame and I now need to display the actual error message "The login…
thaweatherman
  • 1,467
  • 4
  • 20
  • 32
9
votes
5 answers

Java eclipse WindowBuilder, change look and feel

im coding a program using windowbuilder in eclipse. I would like to have help with changing the design (Look and feel) from metal to windows. How would i do that? thank you
redpois0n
  • 121
  • 1
  • 2
  • 5
9
votes
2 answers

Make splash screen with progress bar like Eclipse

My main class loads configuration from a file then shows a frame. I want to make a splash screen with a progress bar like Eclipse so that the progress will increase while the file is being loaded and the splash disappears after the file is loaded.…
Mahmoud Saleh
  • 33,303
  • 119
  • 337
  • 498
8
votes
1 answer

Add JFileChooser to Eclipse Window Builder

I am new to eclipse window builder and want to create a simple GUI with it. I want to add the JFileChooser, however it cannot be found in the palette, even though it's a Swing component. I searched through my components, but there is no file…
Carol.Kar
  • 4,581
  • 36
  • 131
  • 264
1
2 3
43 44