Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Visual C++ .Net

Visual C++ .Net

Scheduled Pinned Locked Moved The Lounge
c++csharpcomquestion
27 Posts 10 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Nish Nishant

    If you can afford it I'd advise you to go and buy it Matt. Here I am trying to get my company to take an MSDN universal subscrib so that I get a free copy of VS.NET [I get one right?] Nish Nish was here, now Nish has gone; He left his soul, to turn you on; Those who knew Nish, knew him well; Those who didn't, can go to hell. I like to :jig: on the Code Project Sonork ID 100.9786 voidmain www.busterboy.org

    K Offline
    K Offline
    Kannan Kalyanaraman
    wrote on last edited by
    #21

    Nish [BusterBoy] wrote: Here I am trying to get my company to take an MSDN universal subscrib so that I get a free copy of VS.NET [I get one right?] Actually, It depends on how many licenses of MSDN universal your company is getting. Initially I was the opinion that once you have your subscription you can install whatever that comes along with the subscription and any number of people in the company can use them. I was wrong, the license says that Universal subscription is for a person, and this person can install software on the machines which are under his control and only one person can work on these machines at any point of time. So if your company is getting universal subscription, make the subscription licensed under your name, ie. theoritically its ur comp. that pays the subscription but is licensed for you, thatway u can install all of the msdn universal goodies. p.s these restrictions does not apply for the MSDN as such, it can be used by any no of people of a comp. regards Kannan

    1 Reply Last reply
    0
    • R Roger Wright

      That's about right. In fact, if I read the ad they sent me correctly, all the Server products, too! I can't afford it, either, but I wish I could... I keep hoping somebody will send me a free copy. Last week I got a set from Oracle - JDeveloper, and Oracle8i Enterprise Edition. - I don't know why. But there's a copy of "Oracle8 The Complete Reference" on my shelf that I haven't read yet. Maybe I should!

      A Offline
      A Offline
      A A 0
      wrote on last edited by
      #22

      Actually you get some not all the server products according to this: matrix

      R 1 Reply Last reply
      0
      • A A A 0

        Actually you get some not all the server products according to this: matrix

        R Offline
        R Offline
        Roger Wright
        wrote on last edited by
        #23

        True. But it's a lot more than you get with a VS.NET purchase, for only a few years' gross pay more! What a deal!!!

        1 Reply Last reply
        0
        • C Christian Graus

          Yes, much better STL, much better general standards support by mid year ( VC internally at M$ compiles Loki now ). Christian I have come to clean zee pooollll. - Michael Martin Dec 30, 2001 Picture the daffodil. And while you do that, I'll be over here going through your stuff.

          J Offline
          J Offline
          Jorgen Sigvardsson
          wrote on last edited by
          #24

          ****Christian Graus wrote: ( VC internally at M$ compiles Loki now ). And the crowd goes wild! :cool: Sonorked as well: 100.13197 jorgen

          1 Reply Last reply
          0
          • M Matt Newman

            Is there any improvements in VC++ 7 that would make the purchase worthwhile? -:suss:Matt Newman:suss: -Sonork ID: 100.11179:BestSnowman Frankly AOL should stick to what it does best: Fooling millions of americans into believing that it, AOL, is the web. -Paul Watson

            T Offline
            T Offline
            Todd C Wilson
            wrote on last edited by
            #25

            Nope. Unless you like the IDE that Visual Interdev uses forced upon you.


            Visual Studio Favorites - www.nopcode.com/visualfav

            W 1 Reply Last reply
            0
            • M Matt Newman

              A local computer store has Visual C++ .NET Standard for $89.99 USD. I have not even looked at .NET and am currently using VC++ 6 Standard. Is this VC++ 7? If so is it worth the buy? -:suss:Matt Newman:suss: -Sonork ID: 100.11179:BestSnowman Frankly AOL should stick to what it does best: Fooling millions of americans into believing that it, AOL, is the web. -Paul Watson

              W Offline
              W Offline
              Walter Sullivan
              wrote on last edited by
              #26

              Standard doesn't have the optimizing compiler, some Wizards (for Enterprise types of applications) and the Data tools (maybe a little more, but that is the gist of it). Its geared toward the hobbiest, I don't know if there are any EULA restrictions or not. I would say, if you're not building a commercial product, its a good deal. Its really not the tool to get if you want to do something professionally. Walter Sullivan Lead Program Manager, ATL/MFC

              1 Reply Last reply
              0
              • T Todd C Wilson

                Nope. Unless you like the IDE that Visual Interdev uses forced upon you.


                Visual Studio Favorites - www.nopcode.com/visualfav

                W Offline
                W Offline
                Walter Sullivan
                wrote on last edited by
                #27

                Even if you will never write one line of managed code (meaning .NET code), VC++ .NET is still a solid upgrade. Here are some links of just a few things that have been added since VC6: http://msdn.microsoft.com/msdnnews/2001/sept/vcnet/vcnet.asp http://msdn.microsoft.com/visualc/technical/articles.asp http://msdn.microsoft.com/visualc/default.asp, in particular, see the article on buffer overruns and Whole Program Optimizations http://www.gotdotnet.com/team/cplusplus/, this page has a few articles on the unmanaged C++ features These are all features that are significant improvements even if you're writing the exact same application you were writing with VC6. There are nice features about the IDE, even over what VC6 had. But, its a new IDE and will require some 'adjustments' in how you work no doubt. Beyond just the IDE, there are some really cool improvements in the debugger not discussed in any of the links above. The one that for me is almost worth the upgrade is a feature called "Step into specific". You know when you make a function call, and as parameters to the function call you use other functions? Well, if its the outside call, or just one of the parameters, that you want to step into and the rest you want to ignore, you can right-click on the statement (before you've F10'd into anything) and choose the specific function you want to step into. There are other treats like that hidden around that you'll grow to really like. Walter Sullivan Lead Program Manager, ATL/MFC

                1 Reply Last reply
                0
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Don't have an account? Register

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups