I have SDI structure program and I want to create CDialog
with child style and use CFormView
as its parent. Because I want to use CFormView
as a "containter".
Now I encounter two problems.
- I can not set setmunu to
CDialog
(because of the dialog style is child) - The dialog behave unnormal (the dialog has
CEdit
, but it can not input ...)
How can I resolve the problem?
I create dialog with style popup , after creation,repoint its parent to cformview and solve the above problems.