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. VC++ 6.0 [modified]

VC++ 6.0 [modified]

Scheduled Pinned Locked Moved The Lounge
c++question
106 Posts 28 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.
  • C Chris Austin

    Honestly, you can have one of my personal copies along with the license. Send me an email if you want it. Hey don't worry, I can handle it. I took something. I can see things no one else can see. Why are you dressed like that? - Jack Burton

    R Offline
    R Offline
    RahulOP
    wrote on last edited by
    #74

    Chris Austin wrote:

    Honestly, you can have one of my personal copies along with the license.

    You wouldnt by any chance have an extra license would you?LOL!! I work with MFC at office.Wanted to write a coupla freewares obviously i cant do that at work and impossible to do at home given the prohibitive price of the thing. So short of buying an illegit copy off the roads(possible in India.of course since i plan to put my name on it, just wondering how long before i start getting sued)looks like i'll have to shelve my plans:^)

    C J 2 Replies Last reply
    0
    • C Chris S Kaiser

      So why can't I swap out the compiler? Why do I need to get the whole IDE just for the compiler? I don't even use any extensions or the like, I turn them all off, as the library is cross platform. Linux/Windows. This is what's really frustrating about VS2005, and the jump from 2002 to 2003. This statement is false.

      S Offline
      S Offline
      Stuart Dootson
      wrote on last edited by
      #75

      A decent editor (I like TextPad, but whatever), a knowledge of makefiles and a download of the Windows Debugging tools[^] and you've got a non-VS development environment. Helps to be comfortable with the command line, of course. Personally, I use VS21003 for C++ development and really like it - it's probably because a) I don't do much GUI development and/or b) I use the following add-ins to sweeten the whole IDE thang: Visual Assist[^] Comment Re-flower[^] Fast Solution Build[^] Solution Build Environment[^] (I liked this one so much I wrote something similar for VS6) WTL Helper[^] (when I *do* do GUIs, I tend to use WTL, not MFC). And as Christian said, the VS6 C++ compiler sucked big-time - I use a the Boost[^] libraries a lot - they compile so much quicker and with so many fewer problems that there's no comparison between VS6 and VS2003 for me.

      1 Reply Last reply
      0
      • C Christian Graus

        Chris S Kaiser wrote:

        So why can't I swap out the compiler?

        I didn't say you can't, I'm sure you can. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

        S Offline
        S Offline
        Stuart Dootson
        wrote on last edited by
        #76

        The main problem would be that the PDB file format changed (IIRC), so the VS6 debugger wouldn't work with executables produced by VS2003...I think.

        1 Reply Last reply
        0
        • C Chris S Kaiser

          Yeah, I work in VS2003, but this is for my personal stuff. I have a cross platform library that has some nifty stuff, so, nothing MS specific. Mostly I don't like how it forces me to conform to its notion of project management. I liked workspaces. I don't like solutions. That's probably the bulk of it. Just standard C++. So yeah, I'd like the conformancy, but I should be able to get that from the compiler alone. Where is the one great true toolset?!? As my momma used to say: wish in one hand and ..... in the other. See which one fills up faster. This statement is false.

          S Offline
          S Offline
          Stuart Dootson
          wrote on last edited by
          #77

          Chris S Kaiser wrote:

          I liked workspaces. I don't like solutions.

          Aren't they the same apart from the name? That's how I've treated solutions and I've not got bitten.

          C 1 Reply Last reply
          0
          • R Rama Krishna Vavilala

            Chris S Kaiser wrote:

            Does it still come with the msdn?

            If you have MSDN subscription, you can download it from subscriber downloads. I downloaded VB6 a while back because someone threw away the CDs (at work) and I needed VB6 for a project. I saw that C++ was also available for download. I am not sure whether it is legal for any one to send the CDs to you? Otherwise you can always subscribe to MSDN and hope download it.;)


            My Blog

            M Offline
            M Offline
            Mike Dimmick
            wrote on last edited by
            #78

            You can't any more because it contained Microsoft's Java VM, and therefore had to be removed under the terms of Microsoft's settlement with Sun. There was an announcement at the end of last year. Stability. What an interesting concept. -- Chris Maunder

            1 Reply Last reply
            0
            • C Chris S Kaiser

              So why can't I swap out the compiler? Why do I need to get the whole IDE just for the compiler? I don't even use any extensions or the like, I turn them all off, as the library is cross platform. Linux/Windows. This is what's really frustrating about VS2005, and the jump from 2002 to 2003. This statement is false.

              A Offline
              A Offline
              Anna Jayne Metcalfe
              wrote on last edited by
              #79

              Chris S Kaiser wrote:

              So why can't I swap out the compiler? Why do I need to get the whole IDE just for the compiler? I don't even use any extensions or the like, I turn them all off, as the library is cross platform. Linux/Windows.

              You can - but not in VS6. VS2002 onwards allow you to define custom language services - which can use whatever compiler you like - using the Visual Studio SDK. That's how the existing built in languages are integrated, as such as third party plug-ins such as Visual Fortran and Iron Python. Unfortunately the same is not true for VS6. The VS6 IDE is closely wedded to its compiler, and you would have to perform some pretty low level hacks to change that. Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

              D C 2 Replies Last reply
              0
              • C Christian Graus

                Chris S Kaiser wrote:

                So why can't I swap out the compiler?

                I didn't say you can't, I'm sure you can. Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

                A Offline
                A Offline
                Anna Jayne Metcalfe
                wrote on last edited by
                #80

                Not easily. With VS6 you'd need access to the compatible VSIP libraries, which when they were available would have cost you $50,000 per year for a minimum of 3 years. By contrast you can fairly easily add a new language server (and whatever compiler you like) to VS2002 onwards using the Visual Studio SDK. The IronPython sample illustrates how to do it. Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

                1 Reply Last reply
                0
                • A Anna Jayne Metcalfe

                  Chris S Kaiser wrote:

                  So why can't I swap out the compiler? Why do I need to get the whole IDE just for the compiler? I don't even use any extensions or the like, I turn them all off, as the library is cross platform. Linux/Windows.

                  You can - but not in VS6. VS2002 onwards allow you to define custom language services - which can use whatever compiler you like - using the Visual Studio SDK. That's how the existing built in languages are integrated, as such as third party plug-ins such as Visual Fortran and Iron Python. Unfortunately the same is not true for VS6. The VS6 IDE is closely wedded to its compiler, and you would have to perform some pretty low level hacks to change that. Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

                  D Offline
                  D Offline
                  Dan Neely
                  wrote on last edited by
                  #81

                  Anna-Jayne Metcalfe wrote:

                  Visual Fortran

                  This brings back painful memories. Oddly enough not from coding though, the only thing I did was hard code several input parameters in one app. In one of my astronomy classes we had to use a program that took as inputs the surface conditions and composition of a star and then integrated inward to see if they made sense (ie radius too big would result in using up all the mass before reaching the core). We had to do two models each with two user adjustable parameters. The two parameters were coupled so that you couldn't just hold X constant, find the optimum Y, then hold Y constant and adjust X until there was a valid solution, instead, plotting Z=SizeOfError(x,y) would give something that looked like a curving valley with the hills having clifflike drop-off's on the far side of the crests. One model required tuning inputs to 9 decimal places, the second 11. I spent about 15 hours total doing both

                  A 1 Reply Last reply
                  0
                  • R RahulOP

                    Chris Austin wrote:

                    Honestly, you can have one of my personal copies along with the license.

                    You wouldnt by any chance have an extra license would you?LOL!! I work with MFC at office.Wanted to write a coupla freewares obviously i cant do that at work and impossible to do at home given the prohibitive price of the thing. So short of buying an illegit copy off the roads(possible in India.of course since i plan to put my name on it, just wondering how long before i start getting sued)looks like i'll have to shelve my plans:^)

                    C Offline
                    C Offline
                    Chris Austin
                    wrote on last edited by
                    #82

                    Sorry Rahul, I think the timing was agaist you. I really can't risk jettisioning all of my copies / licenses. Had you been a bit earlier, I would have gladly given it to you. Just for MFC, have you considered VC++ 2005 Express, it is free forever and you can get a hold of it here[^] Again, I am sorry about not having an additional spare to sell. Cheers Chris Austin Hey don't worry, I can handle it. I took something. I can see things no one else can see. Why are you dressed like that? - Jack Burton

                    R 1 Reply Last reply
                    0
                    • R Rob Graham

                      These guys[^] seem to still be selling it, although the price has certainly inflated a good bit...

                      R Offline
                      R Offline
                      realJSOP
                      wrote on last edited by
                      #83

                      Wow! That's good chunk of change for something 4 versions old.

                      "Why don't you tie a kerosene-soaked rag around your ankles so the ants won't climb up and eat your candy ass..." - Dale Earnhardt, 1997
                      -----
                      "...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001

                      C R 2 Replies Last reply
                      0
                      • S Stuart Dootson

                        Chris S Kaiser wrote:

                        I liked workspaces. I don't like solutions.

                        Aren't they the same apart from the name? That's how I've treated solutions and I've not got bitten.

                        C Offline
                        C Offline
                        Chris S Kaiser
                        wrote on last edited by
                        #84

                        Not in my experience. But part of my troubles is a framework I built on 6 that has issues with 7. Heh, it would be funny if I was depending on the broken compiler from 6, but I'll fix that anyway when I plug in the 2003 compiler into the 6 IDE. Another nitpick.. bookmarks. Alt-F2 is gone. No storage of bookmarks to browse with. They've got other mechanisms to replace em' but.. eh. Its like pulling a Helen Keller, where her parents would rearrange the furniture on her to keep her from becoming complacent. I for one am alright with a little continuity in my IDE. This statement is false.

                        S 1 Reply Last reply
                        0
                        • A Anna Jayne Metcalfe

                          Chris S Kaiser wrote:

                          So why can't I swap out the compiler? Why do I need to get the whole IDE just for the compiler? I don't even use any extensions or the like, I turn them all off, as the library is cross platform. Linux/Windows.

                          You can - but not in VS6. VS2002 onwards allow you to define custom language services - which can use whatever compiler you like - using the Visual Studio SDK. That's how the existing built in languages are integrated, as such as third party plug-ins such as Visual Fortran and Iron Python. Unfortunately the same is not true for VS6. The VS6 IDE is closely wedded to its compiler, and you would have to perform some pretty low level hacks to change that. Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

                          C Offline
                          C Offline
                          Chris S Kaiser
                          wrote on last edited by
                          #85

                          I'm not so sure, people have been swapping GCC for the MS compiler in VC6 I know. Its just one of the tools. But I'll find out. This statement is false.

                          A 1 Reply Last reply
                          0
                          • C Chris S Kaiser

                            Does anyone know where I might be able to purchase a boxed licensed copy of VC++ 6.0? [edit] Does it still come with the msdn? [/edit] This statement is false. -- modified at 18:16 Wednesday 19th July, 2006

                            F Offline
                            F Offline
                            Fernando A Gomez F
                            wrote on last edited by
                            #86

                            You'd have to get a "pirate" copy of VC6 and then ask Microsoft for purchasing a new licence. They'll sell you a VC7/VC8 licence anyway, and that'll cover the VC6 licence. A polar bear is a bear whose coordinates has been changed in terms of sine and cosine.

                            C 1 Reply Last reply
                            0
                            • C Chris S Kaiser

                              Not in my experience. But part of my troubles is a framework I built on 6 that has issues with 7. Heh, it would be funny if I was depending on the broken compiler from 6, but I'll fix that anyway when I plug in the 2003 compiler into the 6 IDE. Another nitpick.. bookmarks. Alt-F2 is gone. No storage of bookmarks to browse with. They've got other mechanisms to replace em' but.. eh. Its like pulling a Helen Keller, where her parents would rearrange the furniture on her to keep her from becoming complacent. I for one am alright with a little continuity in my IDE. This statement is false.

                              S Offline
                              S Offline
                              Stuart Dootson
                              wrote on last edited by
                              #87

                              Chris S Kaiser wrote:

                              I plug in the 2003 compiler into the 6 IDE.

                              Hmmm - be careful - the VS6 debugger won't work with executables built with the VS2003 compiler - the PDB format changed...

                              C 1 Reply Last reply
                              0
                              • F Fernando A Gomez F

                                You'd have to get a "pirate" copy of VC6 and then ask Microsoft for purchasing a new licence. They'll sell you a VC7/VC8 licence anyway, and that'll cover the VC6 licence. A polar bear is a bear whose coordinates has been changed in terms of sine and cosine.

                                C Offline
                                C Offline
                                Chris S Kaiser
                                wrote on last edited by
                                #88

                                It doesn't have to be a pirated copy. There are still boxed versions for sale, just not by MS. And the licenses are transferrable. This statement is false.

                                1 Reply Last reply
                                0
                                • S Stuart Dootson

                                  Chris S Kaiser wrote:

                                  I plug in the 2003 compiler into the 6 IDE.

                                  Hmmm - be careful - the VS6 debugger won't work with executables built with the VS2003 compiler - the PDB format changed...

                                  C Offline
                                  C Offline
                                  Chris S Kaiser
                                  wrote on last edited by
                                  #89

                                  Ahh.. that's good to know.. eh, I'll make it work. Maybe find the VC7 compiler. This statement is false.

                                  1 Reply Last reply
                                  0
                                  • C Chris S Kaiser

                                    I'm not so sure, people have been swapping GCC for the MS compiler in VC6 I know. Its just one of the tools. But I'll find out. This statement is false.

                                    A Offline
                                    A Offline
                                    Anna Jayne Metcalfe
                                    wrote on last edited by
                                    #90

                                    Maybe I should be a little clearer...It is do-able (Intel integrate their compiler, for example), but the information needed to do it is not something that as far as I'm aware in the public domain. Given that Microsoft no longer support it, that closes off both avenues leaving only reverse engineering and API hooking. Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

                                    C 1 Reply Last reply
                                    0
                                    • D Dan Neely

                                      Anna-Jayne Metcalfe wrote:

                                      Visual Fortran

                                      This brings back painful memories. Oddly enough not from coding though, the only thing I did was hard code several input parameters in one app. In one of my astronomy classes we had to use a program that took as inputs the surface conditions and composition of a star and then integrated inward to see if they made sense (ie radius too big would result in using up all the mass before reaching the core). We had to do two models each with two user adjustable parameters. The two parameters were coupled so that you couldn't just hold X constant, find the optimum Y, then hold Y constant and adjust X until there was a valid solution, instead, plotting Z=SizeOfError(x,y) would give something that looked like a curving valley with the hills having clifflike drop-off's on the far side of the crests. One model required tuning inputs to 9 decimal places, the second 11. I spent about 15 hours total doing both

                                      A Offline
                                      A Offline
                                      Anna Jayne Metcalfe
                                      wrote on last edited by
                                      #91

                                      I have to admit I've never even seen it...I just picked it out as an example I was aware of! Mind you I've never written a line of Fortran in my life (though I did manage Algol-68 instead :doh:) so that shouldn't be a surprise... Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

                                      1 Reply Last reply
                                      0
                                      • C Chris S Kaiser

                                        Does anyone know where I might be able to purchase a boxed licensed copy of VC++ 6.0? [edit] Does it still come with the msdn? [/edit] This statement is false. -- modified at 18:16 Wednesday 19th July, 2006

                                        J Offline
                                        J Offline
                                        Johnny Mnemonic
                                        wrote on last edited by
                                        #92

                                        Chris S Kaiser wrote:

                                        Does anyone know where I might be able to purchase a boxed licensed copy of VC++ 6.0?

                                        Have you looked in eD2k p2p network? I suppose, with big probability, you'll find it there.

                                        C 1 Reply Last reply
                                        0
                                        • A Anna Jayne Metcalfe

                                          Maybe I should be a little clearer...It is do-able (Intel integrate their compiler, for example), but the information needed to do it is not something that as far as I'm aware in the public domain. Given that Microsoft no longer support it, that closes off both avenues leaving only reverse engineering and API hooking. Anna :rose: Currently working mostly on: Visual Lint :cool: Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.

                                          C Offline
                                          C Offline
                                          Chris S Kaiser
                                          wrote on last edited by
                                          #93

                                          Well, I'll have to report back with my post mordem then. ;) This statement is false.

                                          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