
-----------------------------------
joaomello
Mon May 26, 2008 9:37 am

Visual C++ 2008
-----------------------------------
Hi all?!
Visual C++ 2008, is good? It use netFrame (programs will need to have netFrame)?
Visual C++ 6, is better?

Has better IDE for C++?

Sorry my stupid questions, but I'm starting at C++  :roll: 

Mello.

-----------------------------------
syntax_error
Mon May 26, 2008 1:57 pm

RE:Visual C++ 2008
-----------------------------------
if your just starting, why pay for an IDE? Also, are you really going to start using netFrames as a beginner lesson? I think not. Get some free one that will meet the basic needs:

|
|
--> debugger
|
--> complier
|
--> syntax highlighter 
|
--> [extra] project management


and such your just starting out, my best bet would be use a text editor such as notepad++ and cmd.

that is all you need.

-----------------------------------
petree08
Mon May 26, 2008 1:58 pm

RE:Visual C++ 2008
-----------------------------------
does any one know where to download a c++ builder?

-----------------------------------
apomb
Mon May 26, 2008 2:06 pm

RE:Visual C++ 2008
-----------------------------------
[url=http://www.functionx.com/bcb/index.htm]here

-----------------------------------
wtd
Tue May 27, 2008 10:24 am

RE:Visual C++ 2008
-----------------------------------
You'll need to learn the difference between a compiler and an integrated development environment first if you have any hope of becoming a decent programmer.

-----------------------------------
petree08
Tue May 27, 2008 10:44 am

RE:Visual C++ 2008
-----------------------------------
thanks for the link 
+ bits

-----------------------------------
joaomello
Tue May 27, 2008 5:03 pm

RE:Visual C++ 2008
-----------------------------------
thanks!
I only asked ;p
Builder C++ is good? ;p
xD

-----------------------------------
apomb
Tue May 27, 2008 11:30 pm

RE:Visual C++ 2008
-----------------------------------
builder C++ is only "good" if you know what it does, and how to use it ;)

-----------------------------------
btiffin
Wed May 28, 2008 12:38 am

RE:Visual C++ 2008
-----------------------------------
If you want a nice free C++ environment, get cygwin at http://www.cygwin.com/ and install the base.  If it looks good, then setup.exe install gcc, binutils, gdb and make; plus any others, like ctags.

GNU does make for a pretty nice dev env.

Cheers

-----------------------------------
rdrake
Wed May 28, 2008 1:55 am

RE:Visual C++ 2008
-----------------------------------
As suggested above, learning the difference between a compiler and IDE is most important.

Afterwards you can get [url=http://www.microsoft.com/express/vc/]Visual C++ Express 2008 for free, despite popular belief.

-----------------------------------
joaomello
Wed May 28, 2008 8:26 am

RE:Visual C++ 2008
-----------------------------------
so... dev c++ will be good for me?!

thanks all!

-----------------------------------
apomb
Wed May 28, 2008 10:13 am

Re: RE:Visual C++ 2008
-----------------------------------
so... dev c++ will be good for me?!

thanks all!

again, only if you know how to use it effectively.

Using an IDE is NOT neccesary when writing C++ programs. In fact, wtd made a very good point that  gcc -o    then ./

-----------------------------------
joaomello
Wed May 28, 2008 5:01 pm

RE:Visual C++ 2008
-----------------------------------
Understood!
Thanks!
