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