Go Back   PCMech Forums > Help & Discussion > Web Design / Development

Need Some Help? Type Your Keywords Here:

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
Old 08-21-2002, 08:28 PM   #1
Member (8 bit)
 
Join Date: Jul 2002
Location: WI
Posts: 132
Send a message via Yahoo to aj_86cc
programming 101

i want to start programming...and i'm probly going to buy a "" for dummies book. whats a good one to start on. (I was thinking about Windows Game Programming For Dummies. it talks about windows programming too) So what book in that series is good to get?
aj_86cc is offline   Reply With Quote
Old 08-21-2002, 08:42 PM   #2
Banned
 
Join Date: Jul 2002
Posts: 257
You probably wanna learn basic programming first as them books probably think you know some already I would recommend Delphi as it is pretty easy and you will like your results better then Visual Basic and Delphi Personal is a free download
Justin26k is offline   Reply With Quote
Old 08-21-2002, 09:08 PM   #3
Member (13 bit)
 
DrZaius's Avatar
 
Join Date: Jul 2000
Location: Fullerton, CA
Posts: 7,030
I agree, you don't want to jump into games (OpenGL and such) right away because you'll get really confused. Start with the basics, learn C++ or Java and work from there. If you want to do just Windows programs, check out VB or Delphi like Justin recommended, but they're not the best for learning programming.
DrZaius is offline   Reply With Quote
Old 08-22-2002, 01:15 AM   #4
Banned
 
Join Date: Jul 2002
Posts: 257
You will probably want to try a few different languages to see what your comfortable with some people find some languages hard while others find them easy
Justin26k is offline   Reply With Quote
Old 08-22-2002, 07:59 AM   #5
Member (10 bit)
 
Join Date: Apr 2001
Location: Michigan
Posts: 850
Send a message via ICQ to HackinCowboy
Even if you find a language hard, you really shouldn't try and jump into a more involved language like Delphi. I would agree with DrZaius and start with C++ or Java. These languages will teach you not only the language itself, but the logic and ideas that are needed for more involved languages. There's a lot more to programming than just learning syntax.
HackinCowboy is offline   Reply With Quote
Old 08-22-2002, 10:08 AM   #6
Banned
 
Join Date: Jul 2002
Posts: 257
Also Remember aj_86cc there is nothing thats right NOTHING you can do in C++ that can't be done in Delphi. I would atleast give Delphi a try its a very very nice language and a easy learning curve unlike C++ But when it comes down to it the opinion is yours so make your own decision and use what you like not what we say
Justin26k is offline   Reply With Quote
Old 08-22-2002, 12:31 PM   #7
Member (9 bit)
 
Join Date: Jan 2001
Location: East Coast, USA
Posts: 320
Send a message via AIM to TMAN
well I wouldn't say "NOTHING". You can't declare on the stack (this becomes a speed issue), You can't make a very fast vector of records, you can't declare a variable exactly when you need them, and there isn't a very good preprocessor. Delphi does however make it painfully clear how to do certain things such as loops and logic and being able to use classes as objects becomes kinda useful.
TMAN is offline   Reply With Quote
Old 08-22-2002, 02:35 PM   #8
Banned
 
Join Date: Jul 2002
Posts: 257
Im not arguing but you can do all that you might just have to use Assembly Instructions

Whats everyone got agaist Delphi anyone
Justin26k is offline   Reply With Quote
Old 08-22-2002, 06:17 PM   #9
Member (9 bit)
 
Join Date: Jan 2001
Location: East Coast, USA
Posts: 320
Send a message via AIM to TMAN
Yes, but assembly is an extra hassle that isn't portable. I had to learn delphi for a port. Coming from C++ those issues became a reason for angst. I'm not saying I hate it... there are some aspects which are good ideas but I wouldn't say I love the language.
TMAN is offline   Reply With Quote
Old 08-22-2002, 08:08 PM   #10
Banned
 
Join Date: Jul 2002
Posts: 257
I ain't saying love Delphi i'm just saying it isn't a bad language neither is C++ there both great I just didnt want you all to dismiss Delphi for the newbie as the learning curve for C++ is very hard and while Delphi aint the easiest it is easier than C++ I know everyone has there langauage And I dont believe you should force yourself to learn a one language when you feel better with a different one well just my 2cents
Justin26k is offline   Reply With Quote
Old 08-22-2002, 08:40 PM   #11
Member (12 bit)
 
Paul Victorey's Avatar
 
Join Date: Mar 1999
Location: MN or WI
Posts: 3,017
I don't have anything against Delphi, I've never used it.

On the topic of books, the 2 "For Dummies" programming books that I've seen (C and C++) I didn't like as much as the "Teach Yourself _____ in __ Days" series. I only was browsing them, however, I didn't read them fully, so my opinion is only semi-informed.

A lot of it depends on what you want to program. C++ is sort of the standard for porgramming, it's the basis of Java, although creating windows programming can be harder than with other choices like VB. If you wanted to be a professional game programmer, you'd absolutely need to know C++. If you are looking at programming as a hobby, there are many languages to choose from. Also, you can make careers out of other languages, as a lot of places will create internal software and they use a wide variety of programs.
Paul Victorey is offline   Reply With Quote
Old 08-22-2002, 11:39 PM   #12
Banned
 
Join Date: Jul 2002
Posts: 257
I would agree with paul that if you do game programming learn C++ or atleast some Delphi can also be used for games though and I have seen great results but in the end its all up to you
Justin26k is offline   Reply With Quote
Old 08-23-2002, 07:32 AM   #13
Member (10 bit)
 
Join Date: Apr 2001
Location: Michigan
Posts: 850
Send a message via ICQ to HackinCowboy
Well Said Paul..
I for one don't do any games programming. I know C++ to the point where I could manuever around and make some simple apps, but for the most part I stick to languages like VB, SQL, Java, JavaScript....Etc.. I mostly do Windows Application and Web/Database programming. So the need for me to know something like C++ or Delphi isn't there.
HackinCowboy is offline   Reply With Quote
Old 08-23-2002, 11:44 AM   #14
Member (9 bit)
 
Join Date: Jan 2001
Location: East Coast, USA
Posts: 320
Send a message via AIM to TMAN
The Sams Teach yourself series are what got me started. They will teach you the basics very well. If you want to do windows programming (in C++) the wrox series is also very nice. If you want to do games in c++, you can't beat the net for free, comprehensive tutorials.
TMAN is offline   Reply With Quote
Old 08-23-2002, 05:34 PM   #15
aym
Registered User
 
aym's Avatar
 
Join Date: Nov 2001
Posts: 1,965
Here is the online version of SAMS teach yourself C++ in 21 days:
http://www.flashdance.cx/books/Teach...ion/htm/fm.htm
aym is offline   Reply With Quote
Reply

Bookmarks

Still Need Help? Type Your Keywords Here:


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -5. The time now is 12:22 PM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
SEO by vBSEO 3.6.0 PL2