TabControl and CView

  • Thread starter Thread starter Hai Ly Hoang [MT00KSTN]
  • Start date Start date
H

Hai Ly Hoang [MT00KSTN]

I want my application to have an TabControl, which each pane is a View
(CEditView for example). (ie. I want to attach views of CDocument into tabs
of TabControl).
Can any one help me ?

Thank in advance
 
Hai said:
I want my application to have an TabControl, which each pane is a View
(CEditView for example). (ie. I want to attach views of CDocument into tabs
of TabControl).
Can any one help me ?

Thank in advance

See the MFC source code for CSplitterWnd::CreateView. It shows how to
create a view that is not in a frame window. Although it is not readily
apparent, this code also attaches the view to the document using the
standard MFC method.
 
Back
Top