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

Information

Scheduled Pinned Locked Moved C / C++ / MFC
csharpc++tutoriallearning
4 Posts 2 Posters 1 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.
  • S Offline
    S Offline
    schliz
    wrote on last edited by
    #1

    Hi everybody! I would like to add graphical objects like buttons and so on to my project. But I do not want to use any wizzard. In every book I bought there is just the information how to add things by using the wizzard. Were can I get sources of information about Vc++ .Net, that I will be able to programm everything without a wizzard. Thank you very much. Georg

    E 1 Reply Last reply
    0
    • S schliz

      Hi everybody! I would like to add graphical objects like buttons and so on to my project. But I do not want to use any wizzard. In every book I bought there is just the information how to add things by using the wizzard. Were can I get sources of information about Vc++ .Net, that I will be able to programm everything without a wizzard. Thank you very much. Georg

      E Offline
      E Offline
      EXTEIDE
      wrote on last edited by
      #2

      like this? class CCustomPrjToolWindow : public CFrameWnd { ... protected:   CButton btn; }; CCustomPrjToolWindow::CCustomPrjToolWindow() {   Create(NULL, "Custom Project Tool Window", WS_OVERLAPPEDWINDOW);   btn.Create( "button", WS_CHILD | WS_VISIBLE, CRect(20, 100, 150, 120), this, 0); } if you want to catch the btn click event, you have to make your own button class that is overrided from CButton. Enjoy:rose: Anderson Sheen (exteide@gmail.com) The Extension IDE: http://www.exteide.com

      S 1 Reply Last reply
      0
      • E EXTEIDE

        like this? class CCustomPrjToolWindow : public CFrameWnd { ... protected:   CButton btn; }; CCustomPrjToolWindow::CCustomPrjToolWindow() {   Create(NULL, "Custom Project Tool Window", WS_OVERLAPPEDWINDOW);   btn.Create( "button", WS_CHILD | WS_VISIBLE, CRect(20, 100, 150, 120), this, 0); } if you want to catch the btn click event, you have to make your own button class that is overrided from CButton. Enjoy:rose: Anderson Sheen (exteide@gmail.com) The Extension IDE: http://www.exteide.com

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

        Thank you so much I will try this! Do you have any book recommendation how to learn this without the wizzard? I have knowledge in programming C++ and I would need information how the framework works and its functionality. Thank you very much in advance. Georg:)

        E 1 Reply Last reply
        0
        • S schliz

          Thank you so much I will try this! Do you have any book recommendation how to learn this without the wizzard? I have knowledge in programming C++ and I would need information how the framework works and its functionality. Thank you very much in advance. Georg:)

          E Offline
          E Offline
          EXTEIDE
          wrote on last edited by
          #4

          You're welcome. :) I've no idea to recommend the book, instead, you'd better to research many kind of examples in below page. http://www.codeguru.com/Cpp/controls/[^] Enjoy:rose: Anderson Sheen (exteide@gmail.com) The Extension IDE: http://www.exteide.com

          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