Any opinions on what the best tools out there are? If there was something as good as Delphi (where components can easily be moved around the screen), I'd love to hear about it. Paul
It's been awhile since I used Delphi, but there are several GUI builders available. My favorite is NetBeans, because at free, the price is right. Borland's JBuilder is also not bad. I think the Foundation version is still free, and includes a GUI builder. Ironically, layout managers, which make GUIs much easier to code (especially windows that can be resized) make GUI builders harder to implement and use. Java developers are also more averse the ugly code generated by GUI builders than Delphi programmers. After all, how pretty is Pascal ever going to be? I generally use GUI builders for some initial playing around, then hand code the real GUI. I still use an IDE though for its other benefits.
Chris Stewart
Ranch Hand
Joined: Sep 14, 2002
Posts: 184
posted
0
I've yet to come across a quality GUI designer such as what you will find in VB6 or VS.NET. I've used JBuilder's before, but found it easier and less time consuming to code the interface by hand.
Vikrama Sanjeeva
Ranch Hand
Joined: Sep 02, 2001
Posts: 756
posted
0
Hi,
Originally posted by James Davis: I've yet to come across a quality GUI designer such as what you will find in VB6 or VS.NET. I've used JBuilder's before, but found it easier and less time consuming to code the interface by hand.
I think building GUI via JBuilder saves developent time rather via hands. Bye, Viki.