Visual C++ Question:

How to change the Properties of a Button at runtime?

Tweet Share WhatsApp

Answer:

Assuming that you have set the button's ID as IDC_BTNSAMPLE in the resource editor :-
We have to use the ModifyStyle Function to do this. The function is defined as follows :-
CButton *pBtnSample = (CButton *)GetDlgItem(IDC_BTNSAMPLE); // Make the button look like a checkbox
pBtnSample->ModifyStyle(0,BS_AUTOCHECKBOX,SWP_FRAMECHANGED); // Remove the checkbox style and make it again normal
pBtnSample->ModifyStyle(BS_AUTOCHECKBOX,0,SWP_FRAMECHANGED);

Download Visual C++ PDF Read All 10 Visual C++ Questions
Previous QuestionNext Question
How to change the position of Button at runtime?How to change the Mouse Pointer Over a Button at runtime?