Simple newbie Tab Control question
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
Hello, I've implemented a simple SDI program with MFC and a tab control used to select a child window from a set of 3 dialogs. I followed the instructions at this link: http://www.codersource.net/2010/01/30/ctabctrl/ Everything works if I put the handler of TCN_SELCHANGE in the view class. Instead If i put the handler in the CTabCtrl derived class of my tab control the handler is never called when I push tabs and the tab control doesn't work Can anyone explain me the reason?