Thread: MSVC++ Versions

  1. #16
    Hardware Engineer
    Join Date
    Sep 2001
    Posts
    1,398
    Which one would be good for me
    You can get Visual C++ .NET Standard for about $100. This should be adequate for any personal/individual/educational purposes. The next step-up is Visual Studio for about $1000 (non-acedemic discount), which includes Visual Basic, C#, and J# (???).

    What you can download from Microsoft, right now, for free:
    - the latest and greatest, C/C++ optimizing compiler
    - the latest MS C Runtime Library
    - the latest MS Standard C++ Library including STL
    You can add Visual C++ 2005 Express Beta to that free-list. This is the full Windows IDE program... not a command line interface. If you don't like the Express version, you can get the beta release of Visual Studio Enterprise on a CD for the cost of the postage! (I'm not sure if you can download it.)

    There is a list of free compilers at TheFreeCountry.com.



    MSVC 6.0... Is that a recent version?
    6.0 came out in late 1998. Then, they changed their version-numbering scheme and released MSVC++ 2002 .NET.
    Last edited by DougDbug; 09-16-2004 at 07:05 PM.

  2. #17
    Registered User jlou's Avatar
    Join Date
    Jul 2003
    Posts
    1,090
    If you can get the Standard version of .NET (which doesn't have the optimizing compiler) for $100, and you can get the optimizing compiler for free (which doesn't have the GUI), and you can change your IDE to use whatever compiler you want, can't you just get the standard version and use the optimizing compiler for the same price??

  3. #18
    yea the standard version of Visual Studio .NET, if you go to half
    price books (do a google search, i think halfpricebooks.com is the
    link but im to lazy to check it right now) but for 40 bucks or so
    you can get a copy of standard VS.NET with a pretty decent
    book and 3 disk of MSDN. Id say thats pretty cheap.

  4. #19
    Registered User Frobozz's Avatar
    Join Date
    Dec 2002
    Posts
    546
    Just out of curiousity, does anybody know what the differences are between Express and Standard? I figure they probably remove features but does it come with a license that allows you to sell your finished program? Because I had heard it didn't allow that with the academic but that version always seemed to be just a standard version.

  5. #20
    Registered User Codeplug's Avatar
    Join Date
    Mar 2003
    Posts
    4,981
    >> Just out of curiousity, does anybody know what the differences are between Express and Standard?
    If you're just looking for C/C++ tools to write and debug applications, there is very little difference. Part of what's missing from the Express verison is all the wizards and integrated tools for supporting MFC and ATL.

    The Express download is Beta software and will cost $$$ when it is no longer Beta. Part of using Beta software is that it "is for testing and evaluation purposes only" and "you cannot publicly deploy any applications you create with the beta". Those quotes are from the Express products Frequently Asked Questions

    >> can't you just get the [Visual C++] standard version and use the [free] optimizing compiler ...
    Makes sense to me, I'll be trying that out with VC++ 6.0 Enterprise when I get some time. Like CornedBee mentioned, the bigest hurdles are probably compiler switches that are no longer in line with the Visual Studio project settings UI.

    There are lots of freely available IDE's out there and I would investigate the possibilities of using gdb as a debugger. The MS compiler is capable of generating different debug-info formats and gdb can certainly understand more than one.

    gg

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Trouble with MSVC, Mingw32 and Code::Blocks
    By Brafil in forum C Programming
    Replies: 11
    Last Post: 10-12-2009, 11:34 AM
  2. MSVC resource script in Dev-C++
    By josh_d in forum Windows Programming
    Replies: 0
    Last Post: 03-17-2004, 04:07 PM
  3. MSVC behaves strange
    By ripper079 in forum C++ Programming
    Replies: 4
    Last Post: 10-28-2003, 08:34 PM
  4. Blender3D, XML, and MSVC ???
    By Grumpy_Old_Man in forum Game Programming
    Replies: 0
    Last Post: 08-24-2003, 07:00 PM
  5. GCC (cygwin) much faster than MSVC, Borland?
    By Sargnagel in forum C Programming
    Replies: 15
    Last Post: 08-05-2003, 03:15 AM