Hi, I guess the best answer I can supply is practice and experience. Plus being educated at a university helped allot in understanding the fundemental design and methodology behind programming software for a living. You see, once you understand the fundimentals behind how a program operates, and the coding conventions on how to build applications you can really program in any language once you get up to speed with its syntactical structure. There are just basic building blocks like variables, objects, classes, if statements, etc that are common to every single programming language. They just might look a little different, but once you understand them programming apps in other languages isn't so mysterious. For example, look at the two variables below.
// C/C++/Java style variable. int x = 1; ' VB style variable. x As Integer = 1 Both variables are identical in function, purpose, and even name. The only difference is how the variable is created. in java/C/C++ the int data tuype is specified to declare the variable. In Visual basic the As Integer datatype is used to declare the same variable. Once you know what an integer variable is and how it works it doesn't matter if the language declares it int x or x As Integer as long as you know how to use it in the programming language you are using. [EMAIL PROTECTED] wrote: > Wow, Thomas, you go! c++? I can barely manage basic (i mean the crap with the > line > numbers and such). How do ya do it! Lol > --- Gamers mailing list __ [email protected] If you want to leave the list, send E-mail to [EMAIL PROTECTED] You can make changes or update your subscription via the web, at http://audyssey.org/mailman/listinfo/gamers_audyssey.org. All messages are archived and can be searched and read at http://www.mail-archive.com/[EMAIL PROTECTED] If you have any questions or concerns regarding the management of the list, please send E-mail to [EMAIL PROTECTED]
