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. visual studio c++ 2005...how to open MFC project and run

visual studio c++ 2005...how to open MFC project and run

Scheduled Pinned Locked Moved C / C++ / MFC
c++visual-studiocsharphelptutorial
10 Posts 9 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.
  • G Offline
    G Offline
    goutom roy
    wrote on last edited by
    #1

    hello , i am new in c++ and i am learing vs c++ MFC.how can i open MFC project in vs c++ and compile and run and want to view my window what i have wrote.i can anyone explain me detail how can i open MFC project in vs c++ 2005.i want to see my created window. plz help.

    L U G 3 Replies Last reply
    0
    • G goutom roy

      hello , i am new in c++ and i am learing vs c++ MFC.how can i open MFC project in vs c++ and compile and run and want to view my window what i have wrote.i can anyone explain me detail how can i open MFC project in vs c++ 2005.i want to see my created window. plz help.

      L Offline
      L Offline
      led mike
      wrote on last edited by
      #2

      goutom roy wrote:

      can anyone explain me detail how can i open MFC project in vs c++ 2005

      Look on the File menu for an option like Open Project or something. Good luck

      S 1 Reply Last reply
      0
      • L led mike

        goutom roy wrote:

        can anyone explain me detail how can i open MFC project in vs c++ 2005

        Look on the File menu for an option like Open Project or something. Good luck

        S Offline
        S Offline
        sharp_k
        wrote on last edited by
        #3

        look for a file with .sln (solution) extension or a file .vcproj (project) extension. A Solution may contain a number of projects but a project file contains only one project. Usually there are one project per solution though. good luck

        G 1 Reply Last reply
        0
        • S sharp_k

          look for a file with .sln (solution) extension or a file .vcproj (project) extension. A Solution may contain a number of projects but a project file contains only one project. Usually there are one project per solution though. good luck

          G Offline
          G Offline
          goutom roy
          wrote on last edited by
          #4

          hello , i dont understand what u have said.plz i am new in visual studio c++ 2005.i want to open project and add a cpp file to write c++ MFC code.now how can i open MFC project and .cpp file to write my MFC code in visual studio c++ 2005.tell me plz detail such as menu->project->--------like this. thanks in advance.........

          M R 2 Replies Last reply
          0
          • G goutom roy

            hello , i dont understand what u have said.plz i am new in visual studio c++ 2005.i want to open project and add a cpp file to write c++ MFC code.now how can i open MFC project and .cpp file to write my MFC code in visual studio c++ 2005.tell me plz detail such as menu->project->--------like this. thanks in advance.........

            M Offline
            M Offline
            Michael Schubert
            wrote on last edited by
            #5

            Does your copy of VS 2005 include documentation?

            modified on Wednesday, July 22, 2009 5:17 AM

            K 1 Reply Last reply
            0
            • M Michael Schubert

              Does your copy of VS 2005 include documentation?

              modified on Wednesday, July 22, 2009 5:17 AM

              K Offline
              K Offline
              killabyte
              wrote on last edited by
              #6

              i will not read myself i will have u my minions read to me :mad:

              1 Reply Last reply
              0
              • G goutom roy

                hello , i am new in c++ and i am learing vs c++ MFC.how can i open MFC project in vs c++ and compile and run and want to view my window what i have wrote.i can anyone explain me detail how can i open MFC project in vs c++ 2005.i want to see my created window. plz help.

                U Offline
                U Offline
                UserNameless
                wrote on last edited by
                #7

                goutom roy wrote:

                how can i open MFC project in vs c++

                File -> Open -> Project/Solution (Ctrl + Shift + O) Here I assume you can navigate to the appropriate directory and select either the .sln (Solution File) or the .vcproj (Project File)

                goutom roy wrote:

                compile and run

                To compile and run the project you have just opened: Shift + F5 OR Debug -> Start Without Debugging To compile and run in Debug mode: press F5 OR Debug -> Start Debugging And To view and work on the window (such as add buttons, sample text boxes, and other control objects) Go to the Resource Tab and look under the Dialog Sub menu. And as everyone else above has mentioned: GOOD LUCK

                1 Reply Last reply
                0
                • G goutom roy

                  hello , i am new in c++ and i am learing vs c++ MFC.how can i open MFC project in vs c++ and compile and run and want to view my window what i have wrote.i can anyone explain me detail how can i open MFC project in vs c++ 2005.i want to see my created window. plz help.

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

                  If you have an existing MFC project you want to compile and run, select File, Open, and then Project/Solution. Visual Studio uses solution files (with the extension .sln) and project files (with the extension .vcproj). Navigate to the folder that contains your MFC project. Choose the .sln file it it exists, and the .vcproj file otherwise. If you want to create an initial project to experiment with, select File, New, Project. In the dialog that opens, choose Visual C++ and then MFC in the tree on the left. In the list on the right, select MFC Application. At the bottom of the dialog, choose a location and a name for your project. You will then see a wizard for choosing the basic features for the application you want to create.

                  Software Zen: delete this;
                  Fold With Us![^]

                  1 Reply Last reply
                  0
                  • G goutom roy

                    hello , i dont understand what u have said.plz i am new in visual studio c++ 2005.i want to open project and add a cpp file to write c++ MFC code.now how can i open MFC project and .cpp file to write my MFC code in visual studio c++ 2005.tell me plz detail such as menu->project->--------like this. thanks in advance.........

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

                    There's this new thing available on the internet called google. You can enter search terms and get thousands of possible results, and it only takes about 15 seconds. that's what I did, and I came up with information DIRECTLY from Microsoft. http://msdn.microsoft.com/en-us/library/ms235422%28VS.80%29.aspx[^] If you don't have the mental chops necessary to perform *essential* research, maybe programming isn't your best choice of vocations.

                    "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

                    P 1 Reply Last reply
                    0
                    • R realJSOP

                      There's this new thing available on the internet called google. You can enter search terms and get thousands of possible results, and it only takes about 15 seconds. that's what I did, and I came up with information DIRECTLY from Microsoft. http://msdn.microsoft.com/en-us/library/ms235422%28VS.80%29.aspx[^] If you don't have the mental chops necessary to perform *essential* research, maybe programming isn't your best choice of vocations.

                      "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

                      P Offline
                      P Offline
                      Peter Mulholland
                      wrote on last edited by
                      #10

                      now John, I believe there are new rules about not being so condecending to people lacking in mental chops :laugh:

                      Pete

                      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