Click here to Skip to main content
15,915,603 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Timer/ Multitasking?? Pin
Waldermort6-Feb-07 5:32
Waldermort6-Feb-07 5:32 
QuestionRe: Timer/ Multitasking?? Pin
Roger Stoltz6-Feb-07 5:35
Roger Stoltz6-Feb-07 5:35 
QuestionTreeCtrl within ListCtrl. How ?. Pin
Sakthiu6-Feb-07 1:57
Sakthiu6-Feb-07 1:57 
AnswerRe: TreeCtrl within ListCtrl. How ?. Pin
prasad_som6-Feb-07 2:37
prasad_som6-Feb-07 2:37 
QuestionC++ confusion Pin
User 98856-Feb-07 1:52
User 98856-Feb-07 1:52 
AnswerRe: C++ confusion Pin
prasad_som6-Feb-07 2:24
prasad_som6-Feb-07 2:24 
GeneralRe: C++ confusion Pin
User 98856-Feb-07 2:26
User 98856-Feb-07 2:26 
AnswerRe: C++ confusion Pin
Roger Stoltz6-Feb-07 2:31
Roger Stoltz6-Feb-07 2:31 
You using public inheritance which gives the subclass access to protected members of the baseclass.

Declare the base class ctor as private, then the inheritance type won't matter.

You could also use protected or private inheritance:
class derived : protected base 
// or
class derived : private base
...but then the protection would be the responsability of the subclass which is not so great even if it's syntachtically correct.


"It's supposed to be hard, otherwise anybody could do it!" - selfquote

GeneralRe: C++ confusion Pin
User 98856-Feb-07 2:33
User 98856-Feb-07 2:33 
Question4 Views with CSplitterWnd - Help needed Pin
Franz Klein6-Feb-07 1:46
Franz Klein6-Feb-07 1:46 
QuestionRe: 4 Views with CSplitterWnd - Help needed Pin
Mark Salsbery6-Feb-07 7:50
Mark Salsbery6-Feb-07 7:50 
AnswerRe: 4 Views with CSplitterWnd - Help needed Pin
Franz Klein7-Feb-07 6:53
Franz Klein7-Feb-07 6:53 
GeneralRe: 4 Views with CSplitterWnd - Help needed Pin
Mark Salsbery7-Feb-07 8:14
Mark Salsbery7-Feb-07 8:14 
GeneralRe: 4 Views with CSplitterWnd - Help needed Pin
Franz Klein8-Feb-07 6:48
Franz Klein8-Feb-07 6:48 
GeneralRe: 4 Views with CSplitterWnd - Help needed Pin
Mark Salsbery8-Feb-07 7:16
Mark Salsbery8-Feb-07 7:16 
QuestionConfiguration File Pin
priyank_ldce6-Feb-07 1:46
priyank_ldce6-Feb-07 1:46 
GeneralRe: Configuration File Pin
prasad_som6-Feb-07 2:00
prasad_som6-Feb-07 2:00 
Questiontab control Pin
harsh_29616-Feb-07 1:16
harsh_29616-Feb-07 1:16 
AnswerRe: tab control Pin
Rage6-Feb-07 1:36
professionalRage6-Feb-07 1:36 
GeneralRe: tab control Pin
harsh_29616-Feb-07 19:11
harsh_29616-Feb-07 19:11 
AnswerRe: tab control Pin
Naveen6-Feb-07 1:38
Naveen6-Feb-07 1:38 
GeneralRe: tab control Pin
harsh_29616-Feb-07 19:12
harsh_29616-Feb-07 19:12 
GeneralRe: tab control Pin
Naveen6-Feb-07 19:22
Naveen6-Feb-07 19:22 
QuestionVC8 testing: #include fatal error, cannot open include file... Pin
Joan M5-Feb-07 23:44
professionalJoan M5-Feb-07 23:44 
AnswerRe: VC8 testing: #include fatal error, cannot open include file... Pin
Christian Graus5-Feb-07 23:50
protectorChristian Graus5-Feb-07 23:50 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.