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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Advanced VC++ 6.0 Book/Reference

Advanced VC++ 6.0 Book/Reference

Scheduled Pinned Locked Moved C / C++ / MFC
c++databasehardwarequestionlearning
15 Posts 8 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.
  • A acerunner316

    what are the major benefits of moving to VC8? I'm asking about VC6 because that's what I use at work, and so far, VC6 has been adequate for what I'm doing. I will have to have a good reason for my boss to fork out the extra money for VC8.

    C Offline
    C Offline
    Christian Graus
    wrote on last edited by
    #6

    VC8 is standards compliant, VC6 is not. That's really the main reason I like it. VC8 does also build prettier UI.

    Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

    A 1 Reply Last reply
    0
    • C Christian Graus

      VC8 is standards compliant, VC6 is not. That's really the main reason I like it. VC8 does also build prettier UI.

      Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

      A Offline
      A Offline
      acerunner316
      wrote on last edited by
      #7

      Is it because there is a NEW standard, or VC6 never met any standards to begin with? Also, I noticed that VC8 dropped the .net title. So VC8 doesn't have the .net framework? I've never actually done anything in .net because I've never used anything after VC6. Now back onto topic, if I were to switch to VC8 are there any book out there yet that covers topics more advanced than placing and using controls?

      G C 2 Replies Last reply
      0
      • A acerunner316

        Does anybody know of any good books for VC++ 6.0 that covers more advanced topics? Something that's more advanced that the beginners books like "learn VC++ in a week" type of books. Some topics that I'm interested in are stuff like multimedia software, database software, communication with online servers, coding USB hardware and the drivers for it, etc... Thanks

        S Offline
        S Offline
        stephen hazel
        wrote on last edited by
        #8

        Richter wrote a good book detailing OS stuff. Petzold wrote a good book detailing UI stuff. - You may already know everything in that one, though.

        A 1 Reply Last reply
        0
        • S stephen hazel

          Richter wrote a good book detailing OS stuff. Petzold wrote a good book detailing UI stuff. - You may already know everything in that one, though.

          A Offline
          A Offline
          acerunner316
          wrote on last edited by
          #9

          Can you give me the title of the book? Or the full name of the author? Thanks.

          S 1 Reply Last reply
          0
          • A acerunner316

            Can you give me the title of the book? Or the full name of the author? Thanks.

            S Offline
            S Offline
            stephen hazel
            wrote on last edited by
            #10

            Jeffery Richter - Advanced Windows. Charles Petzold - Programming Windows. Old, but good.

            1 Reply Last reply
            0
            • A acerunner316

              Is it because there is a NEW standard, or VC6 never met any standards to begin with? Also, I noticed that VC8 dropped the .net title. So VC8 doesn't have the .net framework? I've never actually done anything in .net because I've never used anything after VC6. Now back onto topic, if I were to switch to VC8 are there any book out there yet that covers topics more advanced than placing and using controls?

              G Offline
              G Offline
              Gary R Wheeler
              wrote on last edited by
              #11

              acerunner316 wrote:

              So VC8 doesn't have the .net framework?

              Not at all. .NET within Visual Studio 2005 is ubiquitous. In point of fact, C++/MFC development is distinctly a second-class citizen in the VS2005 world, if most comments about it are an indication.


              Software Zen: delete this;

              Fold With Us![^]

              1 Reply Last reply
              0
              • E ensger

                Do you think, that's necessary?? I'm using VC6 too and I hoped that I have no problems using it the next years!!! What are the advanteges of VC8? What will it cost?? And will my program still work, when I change??? Strange - I hoped to leave the problems with Boreland when I changed to VC6:(

                C Offline
                C Offline
                Christian Graus
                wrote on last edited by
                #12

                ensger wrote:

                What are the advanteges of VC8?

                Standards conformance, for one

                ensger wrote:

                And will my program still work, when I change???

                If it's not well written, you will need to make some changes. Either way, you will get warnings for unsafe string handling, but you can turn those off if you want.

                Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

                1 Reply Last reply
                0
                • A acerunner316

                  Is it because there is a NEW standard, or VC6 never met any standards to begin with? Also, I noticed that VC8 dropped the .net title. So VC8 doesn't have the .net framework? I've never actually done anything in .net because I've never used anything after VC6. Now back onto topic, if I were to switch to VC8 are there any book out there yet that covers topics more advanced than placing and using controls?

                  C Offline
                  C Offline
                  Christian Graus
                  wrote on last edited by
                  #13

                  acerunner316 wrote:

                  Is it because there is a NEW standard, or VC6 never met any standards to begin with?

                  The latter.

                  acerunner316 wrote:

                  So VC8 doesn't have the .net framework?

                  It has .NET, but C++ is the only place you don't HAVE to use it.

                  acerunner316 wrote:

                  if I were to switch to VC8 are there any book out there yet that covers topics more advanced than placing and using controls?

                  There have always been books on more advanced topics, such as DirectX, data access, etc. Have you looked at Amazon ?

                  Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

                  1 Reply Last reply
                  0
                  • A acerunner316

                    Does anybody know of any good books for VC++ 6.0 that covers more advanced topics? Something that's more advanced that the beginners books like "learn VC++ in a week" type of books. Some topics that I'm interested in are stuff like multimedia software, database software, communication with online servers, coding USB hardware and the drivers for it, etc... Thanks

                    J Offline
                    J Offline
                    Jeffrey Walton
                    wrote on last edited by
                    #14

                    Hi Ace, Richter is one of my Favorites. I am constantly in his Programming Server Side Applications (ISBN 0-7356-0753-2). I also frequently use his other book (Programming Applications for Windows) also. Also, John Robbins' Debugging Applications, ISBN0-7356-0886-5. Jeff

                    1 Reply Last reply
                    0
                    • A acerunner316

                      Does anybody know of any good books for VC++ 6.0 that covers more advanced topics? Something that's more advanced that the beginners books like "learn VC++ in a week" type of books. Some topics that I'm interested in are stuff like multimedia software, database software, communication with online servers, coding USB hardware and the drivers for it, etc... Thanks

                      T Offline
                      T Offline
                      ThatsAlok
                      wrote on last edited by
                      #15

                      acerunner316 wrote:

                      Does anybody know of any good books for VC++ 6.0 that covers more advanced topics? Something that's more advanced that the beginners books like "learn VC++ in a week" type of books.

                      Developer guide to Visual C++ 6.0

                      "Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow

                      cheers, Alok Gupta VC Forum Q&A :- I/ IV Support CRY- Child Relief and you

                      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