Visual C++ Question:

How to Enable and Disable CButton at runtime?

Tweet Share WhatsApp

Answer:

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

Download Visual C++ PDF 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?