Visual C++ Question:
Download Job Interview Questions and Answers 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);
CButton *pBtnSample = (CButton *)GetDlgItem(IDC_BTNSAMPLE);
pBtnSample->SetWindowPos(0,0,0,100,100,SWP_FRAMECHANGED);
Download Visual C++ Interview Questions And Answers
PDF
Previous Question | Next Question |
How to change the Size of CButton at Runtime? | How to change the Properties of a Button at runtime? |