I want to make some modification to windows version "hello world" program by splitting into 2-pane window. My purpose is to use CSplitterWnd::CreateStatic() function to create the splitted window.
However, the error messages I got are:
error C2027: use of undefined type 'CSplitterWnd'
and
error C2065: 'CreateStatic' : undeclared identifier
I put CSplitterWnd::CreateStatic(hwnd,1,2) right after showwindow() and updatewindow().
What is the problem about this? Is it necessary to embed CreateStatic() in an OnCreateClient() method?
Thank in advance.
However, the error messages I got are:
error C2027: use of undefined type 'CSplitterWnd'
and
error C2065: 'CreateStatic' : undeclared identifier
I put CSplitterWnd::CreateStatic(hwnd,1,2) right after showwindow() and updatewindow().
What is the problem about this? Is it necessary to embed CreateStatic() in an OnCreateClient() method?
Thank in advance.