Click here to Skip to main content
15,887,214 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

Is it necessary to call the base version of OnSize(), CDialog::OnSize(), while I am overriding the OnSize() in my derived class?

example:

void CSizeTestDlg::OnSize(UINT nType, int cx, int cy)
{
CDialog::OnSize(nType, cx, cy);

//Do something
}

Thanks

Nitheesh
Posted
Comments
Richard MacCutchan 23-Dec-15 4:01am    
Standard dialogs are not resizable, so it depends what you are trying to do.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900