Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 6 of 6

Thread: NetBeans Desktop Application in Java

  1. #1
    Junior Member
    Join Date
    Aug 2011
    Posts
    20
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default NetBeans Desktop Application in Java

    I'm learning how to designs GUI's but I realized it's something that can take ages to learn since putting component after component in the frame AND then placing them in the right position can give you a lot of work.

    As you may know, NetBeans can do that for you, you don't even have to write the code, you do have to do write the functions of what you want the components to do but that's the easy part I guess.

    My question is, in reality, do people at work use those Desktop Application tools? is that considered "cheating"? would you recommend creating GUIs writing line by line?


  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: NetBeans Desktop Application in Java

    My impression of the GUI builders is that they are ok for one off projects that you do, use a few times and throw away but are not good for a long lived application where there will be changes. The generated GUI is impossible to change manually.

  3. #3
    Member
    Join Date
    Oct 2011
    Posts
    42
    Thanks
    0
    Thanked 3 Times in 3 Posts

    Default Re: NetBeans Desktop Application in Java

    Quote Originally Posted by Norm View Post
    The generated GUI is impossible to change manually.
    Wrong. NetBeans allows you to customize the generated code. If you don't like something, you can change manually.

    java exception
    Last edited by hns1984; January 11th, 2012 at 06:57 PM.

  4. #4
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: NetBeans Desktop Application in Java

    Yes you can always change generated java code. However sometimes it is VERY hard to figure out and once you have manually changed it, the IDE will not recognize what you have done and will require you to do it manually in the future.

  5. #5
    Member
    Join Date
    Oct 2011
    Posts
    42
    Thanks
    0
    Thanked 3 Times in 3 Posts

    Default Re: NetBeans Desktop Application in Java

    Quote Originally Posted by Norm View Post
    Yes you can always change generated java code. However sometimes it is VERY hard to figure out and once you have manually changed it, the IDE will not recognize what you have done and will require you to do it manually in the future.
    Could you please give an example about that?
    I have been using NetBeans to design GUI for my apps and I rarely have to change the code manually.

    java exception
    Last edited by hns1984; January 11th, 2012 at 06:58 PM.

  6. #6
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: NetBeans Desktop Application in Java

    I don't use NB. I have seen code posted by NB users and have seen posts by others that say that.

Similar Threads

  1. Creating a Java Desktop Application in NetBeans
    By cslx99 in forum Java Theory & Questions
    Replies: 5
    Last Post: December 2nd, 2012, 01:25 AM
  2. Updatable Java Desktop Application
    By Onur in forum Java Theory & Questions
    Replies: 3
    Last Post: September 18th, 2011, 03:15 PM
  3. Netbean Desktop Application Help!!
    By flyto9 in forum Java Theory & Questions
    Replies: 2
    Last Post: June 30th, 2011, 05:52 PM
  4. Replies: 0
    Last Post: December 3rd, 2009, 04:43 PM
  5. SQLite and Desktop Application
    By urosz in forum JDBC & Databases
    Replies: 12
    Last Post: November 2nd, 2009, 03:50 AM