Re: Java and Visual Basic
Quote:
Originally Posted by
knightwriter
After working on this in the designer mode in VB it occurred to me that Java is similar with JForms, buttons, labels, and such so that I could possibly make a text based rpg in Java using a gui environment as well.
You absolutely can!
Quote:
Originally Posted by
knightwriter
Can the JForms allow for drag and drop design and then do the coding by double clicking on various components with the JFrame?
You could use a gui builder for that, but generally that's not recommended for novice users. It's really, really, really important to understand what's going on under the hood with Swing.
Quote:
Originally Posted by
knightwriter
If both Java and VB work in a similar fashion to design programs what would be the big difference between the two programs?
You might want to start here: Comparison of programming languages - Wikipedia, the free encyclopedia
Second question:
Quote:
Originally Posted by
knightwriter
This is an aside, but something that I thought of while writing this question. In the industry do people normally stick to one language? I am gaining some ability with Java, but will be learning VB and C++ next semester. I would hate to lose the fluency I've gained with Java. If you do use multiple languages, what do you do to not lose some of the information that you've learned about that language?
Programming languages are a lot like tools: different languages are suited for different jobs, just like different tools are suited for different jobs. You wouldn't use a hammer to screw in a screw, and you wouldn't use a screwdriver to hammer in nails! Learning how to use both a hammer and a screwdriver doesn't cause you to lose your knowledge about one- in fact, it increases your understanding of both! Somebody who only knew how to use a hammer would look at everything as if it was a nail. This same thing happens with programming languages- if all you know is Java, then every problem you come across looks like a Java problem, even if it's not (I am very guilty of this). Generally, the more programming languages you're familiar with, the better. But there's a fine line between becoming familiar with many languages and not gaining any in-depth knowledge in any of them, so most people have a "favorite" language that they focus on.
Re: Java and Visual Basic
Thanks for the help Kevin. I appreciate it. As a follow up to the second question: Is there a site where students such as myself can learn more about the programming industry. I've already googled/youtubed a day in the life of a programmer, but I would like to know more about what/how programmers go about committing code to the main program and breaking down section of a design to each programmer or program team.
Re: Java and Visual Basic
Quote:
Originally Posted by
knightwriter
Thanks for the help Kevin. I appreciate it. As a follow up to the second question: Is there a site where students such as myself can learn more about the programming industry. I've already googled/youtubed a day in the life of a programmer, but I would like to know more about what/how programmers go about committing code to the main program and breaking down section of a design to each programmer or program team.
I'm not sure you're going to find something like that, as each team and programmer is different. A lot of people and teams use version control like svn or git. But really, I'd focus on my own smaller projects if I were you.
Re: Java and Visual Basic
Thanks Kevin. I will continue on with my basic projects. I'm excited to be able to eventually get out into the workforce and apply my knowledge to real designs and I would like to be as up to speed and marketable as possible when I get there.
Re: Java and Visual Basic
Quote:
Java is similar with JForms
Never heard of anything called JForms in Java.
db
Re: Java and Visual Basic
Quote:
Originally Posted by
DarrylBurke
Never heard of anything called JForms in Java.
db
Sorry, I mean JFrame. I was getting my VB and Java mixed up.