owner-drawn button
-
Hi I am a new learner of visual c++ for a new job.I want to use an owner-drawn button in my application.for example I downloaded CRoundButton2 project from this site but I couldn't use it.my question is that how can I apply this button for the buttons in my project.If someone can explain how can I use them,I will be so glad.(I tried to do what was explained in the project,bu I was not successful.) Good Bye (Full name of the project is -> CRoundButton2 - A fancy graphical button)
-
Hi I am a new learner of visual c++ for a new job.I want to use an owner-drawn button in my application.for example I downloaded CRoundButton2 project from this site but I couldn't use it.my question is that how can I apply this button for the buttons in my project.If someone can explain how can I use them,I will be so glad.(I tried to do what was explained in the project,bu I was not successful.) Good Bye (Full name of the project is -> CRoundButton2 - A fancy graphical button)
the best place to ask is in the forum at the botton of the article from which you downloaded it.
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]
-
Hi I am a new learner of visual c++ for a new job.I want to use an owner-drawn button in my application.for example I downloaded CRoundButton2 project from this site but I couldn't use it.my question is that how can I apply this button for the buttons in my project.If someone can explain how can I use them,I will be so glad.(I tried to do what was explained in the project,bu I was not successful.) Good Bye (Full name of the project is -> CRoundButton2 - A fancy graphical button)
you will probably need to subclass the item. here is what you do: - create a data member for the control you subclass in the class of the owner window - include the new control header - change the type of the member so, you will change class CMyDialog : public CDialog { //blah, blah, blah CButton m_btn; }; into #include "RoundButton2.h" class CMyDialog : public CDialog { //blah, blah, blah CRoundButton2 m_btn; }; there are other ways as well, but this looks the best from my POINT of CView
Live long and prosper johny74656@gmail.com