View Poll Results: Which one to use

Voters
23. You may not vote on this poll
  • VC ++ .net 2003

    3 13.04%
  • VC++ 6

    20 86.96%

Thread: VC++ .net 2003.....

  1. #31
    train spotter
    Join Date
    Aug 2001
    Location
    near a computer
    Posts
    3,868
    I use both, (Enterprise) but I don't have to pay for them.

    I like some of the new features in the .NET debugger, especially its better memory error detection and the way it fills in the function and structure variable names inc any comment attached to them. Browse works better as well.

    MSVC v5 had the best help...

    My version of BoundsChecker only works with v6 though and I have some problems with conflicts in a third party library in .NET

    .NET's menu resource editor gives me the #%$^!

    >>I'm curious what third party libraries you're referring to. I've never had this problem.

    Neither have I.

    I have in .NET with Smaller Animals ImageSource library (but an email to the supplier got a fix in a few hours!).
    "Man alone suffers so excruciatingly in the world that he was compelled to invent laughter."
    Friedrich Nietzsche

    "I spent a lot of my money on booze, birds and fast cars......the rest I squandered."
    George Best

    "If you are going through hell....keep going."
    Winston Churchill

  2. #32
    Registered User
    Join Date
    Nov 2001
    Posts
    18
    i am currently learning through a book which teach c++ as well as Visual C++ 6

    Would i have hard time if i use .Net 2k3 instead of 6??

  3. #33
    Registered User
    Join Date
    May 2003
    Posts
    1,619
    .NET 2003 should be no problem to use; it's like VC6 except without the myriad of incompatibilities.

    Here's another thing that VC6 can't do:

    Code:
    class A {
      virtual A* Function() {return this;}
    };
    
    class B : public A {
      B* Function() {return this;}
    };
    It's perfectly legal C++ to make this override from a function returning an A* to one returning a B* (a covariant return type). VC6 can't do it, though.
    Last edited by Cat; 07-13-2003 at 12:08 PM.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. VC++ 6.0 vs .NET 2003
    By Frantic- in forum C++ Programming
    Replies: 4
    Last Post: 06-26-2005, 08:41 AM
  2. Visual C++Toolkit 2003 and .NET 1.1
    By Joelito in forum Windows Programming
    Replies: 1
    Last Post: 05-13-2005, 09:27 PM
  3. Visual C++ .NET 2003 and XP Style
    By kuphryn in forum Windows Programming
    Replies: 1
    Last Post: 10-07-2003, 11:08 AM
  4. FILES in WinAPI
    By Garfield in forum Windows Programming
    Replies: 46
    Last Post: 10-02-2003, 06:51 PM
  5. Visual J#
    By mfc2themax in forum A Brief History of Cprogramming.com
    Replies: 0
    Last Post: 10-08-2001, 02:41 PM