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. General Programming
  3. C / C++ / MFC
  4. Advance tolpic in vc6

Advance tolpic in vc6

Scheduled Pinned Locked Moved C / C++ / MFC
c++csharpvisual-studiodesigndebugging
9 Posts 5 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.
  • H Offline
    H Offline
    hrishiS
    wrote on last edited by
    #1

    Hi to all, I am a new learner in visual C++ 6.....I knew C++ language, and now i learnt visual studio editor also....just what is enough to debug and run the project... Now i am having free time and I would like to learn more...I want to be a good vc6 programmer. Could anyone please suggest some topics(may be related to project design, C++ Concept or anything in VS6 editor that one should know) to me so that I can go through. Thanks in advance.

    ----------------------------- I am a beginner

    A D A N 4 Replies Last reply
    0
    • H hrishiS

      Hi to all, I am a new learner in visual C++ 6.....I knew C++ language, and now i learnt visual studio editor also....just what is enough to debug and run the project... Now i am having free time and I would like to learn more...I want to be a good vc6 programmer. Could anyone please suggest some topics(may be related to project design, C++ Concept or anything in VS6 editor that one should know) to me so that I can go through. Thanks in advance.

      ----------------------------- I am a beginner

      A Offline
      A Offline
      Aabid
      wrote on last edited by
      #2

      your problem is too brief can u explain it little more... what type of programs you want to make in VC++6.

      H 1 Reply Last reply
      0
      • H hrishiS

        Hi to all, I am a new learner in visual C++ 6.....I knew C++ language, and now i learnt visual studio editor also....just what is enough to debug and run the project... Now i am having free time and I would like to learn more...I want to be a good vc6 programmer. Could anyone please suggest some topics(may be related to project design, C++ Concept or anything in VS6 editor that one should know) to me so that I can go through. Thanks in advance.

        ----------------------------- I am a beginner

        D Offline
        D Offline
        David Crow
        wrote on last edited by
        #3

        It sounds as though you are interested in making GUI applications. Is that correct?

        "Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown

        "Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons

        H 1 Reply Last reply
        0
        • A Aabid

          your problem is too brief can u explain it little more... what type of programs you want to make in VC++6.

          H Offline
          H Offline
          hrishiS
          wrote on last edited by
          #4

          right now am working on console based application only....

          ----------------------------- I am a beginner

          1 Reply Last reply
          0
          • D David Crow

            It sounds as though you are interested in making GUI applications. Is that correct?

            "Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown

            "Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons

            H Offline
            H Offline
            hrishiS
            wrote on last edited by
            #5

            i have work in win32 console base application project...also i tried GUI(MFC) of my own....i mean i have very basics of MFC.....so it will be great if u send some topic in console based application...mFC also would be additional knowledge for me

            ----------------------------- I am a beginner

            1 Reply Last reply
            0
            • H hrishiS

              Hi to all, I am a new learner in visual C++ 6.....I knew C++ language, and now i learnt visual studio editor also....just what is enough to debug and run the project... Now i am having free time and I would like to learn more...I want to be a good vc6 programmer. Could anyone please suggest some topics(may be related to project design, C++ Concept or anything in VS6 editor that one should know) to me so that I can go through. Thanks in advance.

              ----------------------------- I am a beginner

              A Offline
              A Offline
              Alan Balkany
              wrote on last edited by
              #6

              The next step after console applications is using windows for your GUI. There are two approaches you can take: 1. Classic MFC and 2. .NET. .NET is more modern (and both easier to use and more powerful) but isn't supported in your compiler version (VS 6). If you can get a copy of the Scribble Tutorial (Microsoft), it's a good, simple introduction to MFC. Effective C++ by Scott Meyers is a good way to extend your C++ skills. Design Patterns by Gamma et al teaches you how to apply the object-oriented features you've learned to solve practical problems.

              H 1 Reply Last reply
              0
              • H hrishiS

                Hi to all, I am a new learner in visual C++ 6.....I knew C++ language, and now i learnt visual studio editor also....just what is enough to debug and run the project... Now i am having free time and I would like to learn more...I want to be a good vc6 programmer. Could anyone please suggest some topics(may be related to project design, C++ Concept or anything in VS6 editor that one should know) to me so that I can go through. Thanks in advance.

                ----------------------------- I am a beginner

                N Offline
                N Offline
                N a v a n e e t h
                wrote on last edited by
                #7

                hrishiS wrote:

                I want to be a good vc6 programmer.

                Don't stick to just one compiler. Learn and experiment C++ with different compilers. VC6 is quite old and it is worth to try the new versions of Visual Studio. You can get express[^] versions for free. I'd recommend the following books for studying more(in order). 1 - Accelerated C++[^] 2 - Effective C++[^] 3 - Exceptional C++[^] If you are interested in template meta-programming, consider the following ones 1 - C++ Template Metaprogramming: Concepts, Tools, and Techniques from Boost and Beyond[^] 2 - C++ Templates-The Complete Guide[^] 3 - Modern.C++ Design Generic Programming and Design Patterns Applied[^] All the best!

                Navaneeth How to use google |

                H 1 Reply Last reply
                0
                • A Alan Balkany

                  The next step after console applications is using windows for your GUI. There are two approaches you can take: 1. Classic MFC and 2. .NET. .NET is more modern (and both easier to use and more powerful) but isn't supported in your compiler version (VS 6). If you can get a copy of the Scribble Tutorial (Microsoft), it's a good, simple introduction to MFC. Effective C++ by Scott Meyers is a good way to extend your C++ skills. Design Patterns by Gamma et al teaches you how to apply the object-oriented features you've learned to solve practical problems.

                  H Offline
                  H Offline
                  hrishiS
                  wrote on last edited by
                  #8

                  Thanks a lot....I will go through all this concepts

                  ----------------------------- I am a beginner

                  1 Reply Last reply
                  0
                  • N N a v a n e e t h

                    hrishiS wrote:

                    I want to be a good vc6 programmer.

                    Don't stick to just one compiler. Learn and experiment C++ with different compilers. VC6 is quite old and it is worth to try the new versions of Visual Studio. You can get express[^] versions for free. I'd recommend the following books for studying more(in order). 1 - Accelerated C++[^] 2 - Effective C++[^] 3 - Exceptional C++[^] If you are interested in template meta-programming, consider the following ones 1 - C++ Template Metaprogramming: Concepts, Tools, and Techniques from Boost and Beyond[^] 2 - C++ Templates-The Complete Guide[^] 3 - Modern.C++ Design Generic Programming and Design Patterns Applied[^] All the best!

                    Navaneeth How to use google |

                    H Offline
                    H Offline
                    hrishiS
                    wrote on last edited by
                    #9

                    Thanks you sir, for the precious reply

                    ----------------------------- I am a beginner

                    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