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 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...

          realJSOPR Offline
          realJSOPR 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
                              • realJSOPR realJSOP

                                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 Offline
                                C Offline
                                Chris S Kaiser
                                wrote on last edited by
                                #94

                                Yeah, no doubt. On eBay that last one went for 430 or something like that. This statement is false.

                                1 Reply Last reply
                                0
                                • J Johnny Mnemonic

                                  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 Offline
                                  C Offline
                                  Chris S Kaiser
                                  wrote on last edited by
                                  #95

                                  Nah.. someone on CP offered to mail me one of their copies.. awfully nice of him really. Now I'll have to post them articles.. ;) This statement is false.

                                  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:^)

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

                                    RahulOP wrote:

                                    Wanted to write a coupla freewares obviously i cant do that ...

                                    IMHO, you should not f-ck your mind with any licenses. Just write your freeware and throw it to the Net. I suppose those who'll get your free proggies won't go and ask you about your licenses, yet if they're not mad. IMHO one should worry about licenses in the only one case - when he'd like to sell something. When you develop some software for enterprise, or some shareware to earn some bucks, then - be so kind to share some revenue with creators of tools you use. And if you develop some stuff for youself/friends/community - dont worry, be happy ;-)

                                    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

                                      T Offline
                                      T Offline
                                      ThornPhlaunting
                                      wrote on last edited by
                                      #97

                                      My search for "visual c++ 6.0" yielded 5 sealed in the box copies of VC++ 6.0 Professional (not academic) and they include MSDN Library (but probably not an MSDN subscription, I imagine). Thorn

                                      T 1 Reply Last reply
                                      0
                                      • T ThornPhlaunting

                                        My search for "visual c++ 6.0" yielded 5 sealed in the box copies of VC++ 6.0 Professional (not academic) and they include MSDN Library (but probably not an MSDN subscription, I imagine). Thorn

                                        T Offline
                                        T Offline
                                        ThornPhlaunting
                                        wrote on last edited by
                                        #98

                                        Have more info so had to reply to my own message. The copies I see on Ebay range in price from almost nothing to buy-it-now price of $169. Thorn

                                        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

                                          M Offline
                                          M Offline
                                          mptech programmer
                                          wrote on last edited by
                                          #99

                                          *cough* limewire *COUGH* *COUGH* (Oh dear, my boyhood Catholic guilt complex is returning...)

                                          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