
derive class from derived MFC
Your first problem can be solved by looking at an MFC Tech Note on MSDN.
It's been a while, but I believe it is Tech Note #26. It deals with using
DDX, including how to have your custom types show up in the Add Member
Variable dialog. If you can't find it or have any problems, email me and
I'll send you a sample.
--
Cheers,
Tom Archer
page: http://tarcher.home.mindspring.com
Quote:
>I derived a class from CListCtrl named CListCtrlEx, then I derived a
>subclass name MyListCtrl from CListCtrlEx. But I then cannot set a
>listctrl in a dialog to be MyListCtrl type variable since MyListCtrl is
>not in the chooseable list. I cannot set the LVN_ENDLABELEDIT handler
>for MyListCtrl either. Any idea?
>Thanks.
>Song