Visual C++ Question:

How to Enable and Disable CButton at runtime?

Answer:

CButton *btnsample = (CButton *)GetDlgItem(IDC_BUTTON1);
btnsample->EnableWindow(FALSE); // To Disable a button
btnsample->EnableWindow(TRUE); //To Enable a Button

Read All 10 Visual C++ Questions
Previous QuestionNext Question
How to load an Icon on a CButton at Runtime?How to change the Size of CButton at Runtime?