1)How to change the size of a button at run time ?
Answer / 106743013743
Hi,
below, code is running successfully, I hope that it might be
useful for you!!!!
BOOL Csample_button_name_changeDlg::OnInitDialog()
{
CDialog::OnInitDialog();
CButton *btnsample = (CButton *)GetDlgItem(IDC_BUTTON1);
//below, the Code to change Size of the button
btnsample->SetWindowPos(0,0,0,100,100,SWP_FRAMECHANGED);
return TRUE;
}
Code By Ctharam
| Is This Answer Correct ? | 1 Yes | 1 No |
What is userdefine Messages in MFC?
In VC++ How to transfer between one exe to another exe while running..
What view class enables you to use an edit control as a view?
is there any class which is not derived from Cobject
How many types of combo box are their
2 Answers Aaditya Info Solutions, E Logic,
What is the difference between the ASSERT and VERIFY macros?
What is the initial function to be called in MFC and what it will do
Given two processes, how can they share memory?
What is a critical section and how is it implemented?
19)how to set Back Ground Picture to a Dialog Box in MFC ?
what if we provide two message handler for same message ?
How to convert the content of buffer into lower case character.