Property sheet in MDI project
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
Does anyone know how to change the standard view in the MDI project with a Property sheet (wizard style)? :confused:
-
Does anyone know how to change the standard view in the MDI project with a Property sheet (wizard style)? :confused:
-
Does anyone know how to change the standard view in the MDI project with a Property sheet (wizard style)? :confused:
hi Just declare a member variable of your propertysheet class in the view class, override OnInitialUpdate, create the member propertysheet as a child.
void CMdiView::OnInitialUpdate() { CView::OnInitialUpdate(); CMySheet *m_pMySheet = new CMySheet("foooo"); m_pMySheet->Create(this,WS_CHILD|WS_VISIBLE,0); }
best wishes..mil10