Discussions
Categories
- 196.8K All Categories
- 2.2K Data
- 239 Big Data Appliance
- 1.9K Data Science
- 450.3K Databases
- 221.7K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 550 MySQL Community Space
- 478 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3K ORDS, SODA & JSON in the Database
- 544 SQLcl
- 4K SQL Developer Data Modeler
- 187K SQL & PL/SQL
- 21.3K SQL Developer
- 295.9K Development
- 17 Developer Projects
- 138 Programming Languages
- 292.5K Development Tools
- 107 DevOps
- 3.1K QA/Testing
- 646K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 155 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.1K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 18 Java Essentials
- 160 Java 8 Questions
- 86K Java Programming
- 80 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 204 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 439 LiveLabs
- 38 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 171 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 232 Portuguese
Developing a GUI -> Advice needed.

843807
Member Posts: 46,582
I need to write a GUI for a Java application. I am currently using Forte for Java, which I like. I am assuming that if I buy JBuilder that it will be able to build a GUI fairly quickly. I don't know what Forte for Java offers as far as Rapid GUI development, as basically I have just started using the product.
Basically my question is:
Should I develop the GUI manually, or use a GUI builder?
If I use JBuilder, I am afraid that I will basically be locked into using a particular vendor.
Any advice is appreciated.
Comments
-
Depending on experience I suggest writting it by hand. This will take time but you should get familiar with swing. Having said that. Before you go out to buy JBuider ( expensive ), I suggest you go and download netbeans. Its a free IDE with GUI builder. This is a Sun based product and again its free. www.netbeans.org.
With this tool as with most java gui builders you can drop your own beans in. Both visible and invisible. So for example you have: MyTextbox extends JTextField you can add this to your component pallete. . meaning that you are able to drag and drop your own components into the frame.
There are some rules that you should adhear to. . When editting the code in netbeans the necessary generated code is non-editable. You can edit it in another editor, but it may not load and display properly the next time you look at the class in the GUI editor../ . Imagine this to be the same with most editors. Anywho, I've said to much already. . .have fun with this one -
Thank you for the information!,
So it sounds like you strongly recommend net beans over Forte For Java?
Is this true? I like Forte For Java but it seems to be slow. -
Interestingly, Forte for Java is based on the NetBeans IDE !!
Therefore, if you are of the idea to use NetBeans, you may as well continue using Forte itself..
Try initially to code by hand. That will help you build a strong foundation. Then u can go ahead with using a visual builder. As far as I am concerned, Forte is probably the best IDE for Java, If u r planning to buy, then go in for IBM Visual Age. It is equally good.
Also, if u r still bent on using JBuilder, u can download a free personal edition..
cheers
Ramanujam
This discussion has been closed.