Questions tagged [jform-designer]

JFormDesigner is a commercial GUI designer for Java/Swing applications which can be used either standalone or as an IDE plugin. Use this tag for questions regarding the JFormDesigner product.

JFormDesigner is a commercial product from FormDev Software for creating GUI applications using Swing. It can be used either stand-alone or as a plugin for Java IDEs including IntelliJ IDEA and Eclipse.

40 questions
4
votes
1 answer

Spring Swing Integration

Spring does not play nicely with beans that are created outside of its application context. What's the best way in letting me design my forms using JFormDesigner but then using Spring to manage the actions of the components? There are a few ways of…
Pram
  • 2,261
  • 3
  • 31
  • 50
2
votes
2 answers

jformdesigner design it won't display?

import javax.swing.*; import javax.swing.border.TitledBorder; import java.awt.*; import java.awt.event.*; /* * Created by JFormDesigner on Wed May 11 16:42:17 PDT 2011 */ public class usernameForm extends JFrame { private void…
Kyle
  • 3,004
  • 15
  • 52
  • 79
2
votes
1 answer

File Chooser display with a button click. Java Swing

I have a Java assignment in which I need to build a program for exchanging information between students. I am using IntelliJ IDEA and a plugin called JFormDesigner for designing the GUI. I want do display a file chooser when clicking on a button. I…
Mr.E
  • 83
  • 2
  • 10
1
vote
1 answer

JFormDesigner generating Java Code in Eclipse

I am using JFormDesigner to develop a Swing application. However I can't seem to get the package to generate java code. I tried saving the form and also pressing the "Generate Java Code" button, but it is not working. Is there some setting…
Elliott
  • 5,523
  • 10
  • 48
  • 87
1
vote
1 answer

How to debug slow "Parsing Java...." in IntelliJ IDEA

I have a bigger Java project with plenty of maven dependencies and a big Swing GUI with about 13,000 lines of code in a single class. Whenever I modify the GUI and recompile/run, it takes about 3 - 4 minutes in the "Parsing java..." compilation…
BullyWiiPlaza
  • 17,329
  • 10
  • 113
  • 185
1
vote
2 answers

How to Remove Red JFormDesigner Evaluation Text?

I installed JFormDesigner for IntelliJ with an evaluation license to convert some forms from NetBeans, and upon realizing that it put a huge ugly watermark on every single UI panel, I promptly removed it and deleted all of the .jfd files. However,…
ABadHaiku
  • 65
  • 1
  • 6
1
vote
1 answer

How to implement ListSelectionListener with JFormDesigner?

I'm trying to get a button to enable/disable itself depending on whether a JTable has any rows selected. So I believe I need the button to be a ListSelectionListener, listening the JTable's SelectionModel, as described in this Oracle tutorial. How…
Basil Bourque
  • 303,325
  • 100
  • 852
  • 1,154
1
vote
0 answers

Why is the BeansBinding jar still not updated?

Why is the widely distributed BeansBinding jar version still beansbinding-1.2.1.jar? It can be downloaded from Maven Central, or with Netbeans distributions, or installed by the JFormDesigner plugin. Why doesn't it contain the latest changes made…
oshatrk
  • 499
  • 3
  • 14
1
vote
1 answer

codenameone and jformdesigner

Can a form designed in JFormdesigner be used in a codenameone application? If so, how? I know I can start the form from the main class with new LoginForm().show(); but not sure if the generated codes by JFormdesigner will work with…
1
vote
0 answers

JFormDesigner missing designer file

I downloaded a project that the .java gui files say were generated using JFormDesigner but the jfd files are missing so it wont open the designer. I cant seem to find a java to jfd converter in the plugin or online. Is it possible to get the GUI…
FrostyFire
  • 3,212
  • 3
  • 29
  • 53
1
vote
1 answer

JFormDesigner Runtime Library Doesn't Load Custom Code

I've been using JFormDesigner with the runtime library to create dialogs directly from the .jfd files at runtime (I can't change this; not my decision). My problem is that the runtime library doesn't seem to preserve any custom code generation…
Ironcache
  • 1,719
  • 21
  • 33
1
vote
1 answer

Intellij Idea swing JFormDesigner. How to add extended component in designer?

I need to override some method for JTable. How can I insert extended JTable then in my code? If inserting some code in jformdesigner generated code it is overwritten later. How to be in this situation? Thanks
whatswrong
  • 2,203
  • 4
  • 25
  • 36
1
vote
1 answer

When and why does Not implemented (java.lang.reflect.InvocationTargetException) occur?

While opening a JFD file in Eclipse, I am got 'Not implemented (java.lang.reflect.InvocationTargetException)'. Can you tell me when and why does it occur?
Vikram
  • 3,996
  • 8
  • 37
  • 58
1
vote
1 answer

Converting String Text of a TextBox to a numeric in Java

Ok, so i have a Text Box. This Text Box has the word BLAHH written in it. The part I don't get is how I change the text in the TextBox to an Int? I have tried putting the Int into string form. I am not trying to put the string back into Int form. im…
Yloplopy
  • 13
  • 5
1
vote
2 answers

How to draw block diagrams in java?

I need to have a GUI like this: Here all the rectangles must be buttons. How can I achieve this? Suggest me some tools like JFormDesigner.
svkvvenky
  • 1,122
  • 1
  • 15
  • 21
1
2 3