Visual C++ Question:
Download Questions PDF

How to change the position of Button at runtime?

Answer:

Assuming that you have set the button's ID as IDC_BTNSAMPLE in the resource editor :-
CButton *pBtnSample = (CButton *)GetDlgItem(IDC_BTNSAMPLE);
pBtnSample->SetWindowPos(0,0,0,100,100,SWP_FRAMECHANGED);

Download Visual C++ Interview Questions And Answers PDF

Previous QuestionNext Question
How to change the Size of CButton at Runtime?How to change the Properties of a Button at runtime?