CSplitterWnd
-
Hi I am trying to derive from CSplitterWnd but it is not listed in MFC base class list box. any help plz
-
Hi I am trying to derive from CSplitterWnd but it is not listed in MFC base class list box. any help plz
TariqZ wrote:
I am trying to derive from CSplitterWnd but it is not listed in MFC base class list box
You may have to actually type it in yourself :) Something like this should work:
// In the .h file
class AFX_EXT_CLASS CMySplitterWnd : public CSplitterWnd
{
DECLARE_DYNAMIC(CMySplitterWnd)public:
CMySplitterWnd();
virtual ~CMySplitterWnd();
...
};// In the .cpp file
IMPLEMENT_DYNAMIC(CMySplitterWnd, CSplitterWnd)
CUluSplitterWnd::CMySplitterWnd() : CSplitterWnd()
{
...
}CMySplitterWnd::~CMySplitterWnd()
{
...
}...
"Posting a VB.NET question in the C++ forum will end in tears." Chris Maunder