Re: Inheritance and MFC
That's an interesting article. I'm glad you're on the right course now.
Tom
"Nobody" <Nobody@yahoo.com> wrote in message
news:e81$4H5vHHA.4464@TK2MSFTNGP02.phx.gbl...
Tom,
Thanks for the link.
I read further and found answers to my problem.
http://www.codeproject.com/miscctrl/customcontrol.asp
However, if the Grid needs to display anything you will still need to turn
it into a window based control.
Yeah, I was unsure of what a control was.
I had an object that behaved like a control, but in fact, was really not a
control at all.
I had to create a control out of the object.
The m_hWnd problem was because the class was not registered.
Thanks,
"Tom Serface" <tom.nospam@camaswood.com> wrote in message
news:2B39CD5B-4E0F-400F-BD5D-AA417A14BAE3@microsoft.com...
Hi Nobody,
Sorry, I was misunderstanding the concept. However, if the Grid needs to
display anything you will still need to turn it into a window based
control.
Using MFC will make that easier for you and will add very little overhead.
Since you originally derived from CObject, you already included a bunch of
MFC anyway.
Tom
"Nobody" <Nobody@yahoo.com> wrote in message
news:ePxfI4fvHHA.4796@TK2MSFTNGP04.phx.gbl...
Hi Tom,
Actually, it is a different kind of Grid.
Not Grid Excel type, but Grid XY Coordinates type.
By the looks of things, I suppose I can't seperate the Grid from MFC.