1-
i am created some different type of controls (edit box, combo box etc)dynamically,
i want the count of the controls which are on dialog
***********
2 how can i delete the object from the memory which are created dynamically
Printable View
1-
i am created some different type of controls (edit box, combo box etc)dynamically,
i want the count of the controls which are on dialog
***********
2 how can i delete the object from the memory which are created dynamically
See EnumChildWindows().
Quote:
how can i delete the object from the memory which are created dynamically
Code:m_control->DestroyWindow();
delete m_control;