Click here to Skip to main content
16,004,924 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Question WHere to find code for a program which checks dead links and orphan files in a webpage (HTML) Pin
Devils Den16-Aug-07 16:36
Devils Den16-Aug-07 16:36 
QuestionRe: WHere to find code for a program which checks dead links and orphan files in a webpage (HTML) Pin
David Crow17-Aug-07 4:34
David Crow17-Aug-07 4:34 
QuestionHow can I use different typfaces for several static controls in a dialog and change them at runtime? Pin
min_2_max16-Aug-07 15:15
min_2_max16-Aug-07 15:15 
AnswerRe: How can I use different typfaces for several static controls in a dialog and change them at runtime? Pin
Mark Salsbery16-Aug-07 15:22
Mark Salsbery16-Aug-07 15:22 
GeneralRe: How can I use different typfaces for several static controls in a dialog and change them at runtime? Pin
min_2_max19-Aug-07 15:49
min_2_max19-Aug-07 15:49 
GeneralRe: How can I use different typfaces for several static controls in a dialog and change them at runtime? Pin
Mark Salsbery20-Aug-07 6:08
Mark Salsbery20-Aug-07 6:08 
GeneralRe: How can I use different typfaces for several static controls in a dialog and change them at runtime? Pin
min_2_max20-Aug-07 14:26
min_2_max20-Aug-07 14:26 
QuestionLimiting access to a class Pin
Waldermort16-Aug-07 14:54
Waldermort16-Aug-07 14:54 
Lets say I have 2 classes derived from the same base. Within the base I want to have a private member. But, when one derived type is passed to another, I want that instance to be able to gain access. ie...

class Base
{
protected:
    int iSomeVal;
}

class A : public Base
{
    void Copy( Base* pBase )
    {
        // How can I get around the error here without using a public member?
        iSomeVal = pBase->iSomeVal;
    }
}

class B : public Base
{
///
}

main()
{
    A foo;
    B bar;
    foo.Copy( &bar );
}

AnswerRe: Limiting access to a class Pin
cp987616-Aug-07 15:02
cp987616-Aug-07 15:02 
GeneralRe: Limiting access to a class Pin
Waldermort16-Aug-07 15:17
Waldermort16-Aug-07 15:17 
AnswerRe: Limiting access to a class Pin
Mark Salsbery16-Aug-07 15:17
Mark Salsbery16-Aug-07 15:17 
GeneralRe: Limiting access to a class Pin
Waldermort16-Aug-07 15:22
Waldermort16-Aug-07 15:22 
QuestionRe: Limiting access to a class Pin
Mark Salsbery16-Aug-07 15:25
Mark Salsbery16-Aug-07 15:25 
AnswerRe: Limiting access to a class Pin
Waldermort16-Aug-07 15:29
Waldermort16-Aug-07 15:29 
GeneralRe: Limiting access to a class Pin
Mark Salsbery16-Aug-07 15:30
Mark Salsbery16-Aug-07 15:30 
GeneralRe: Limiting access to a class Pin
Mark Salsbery16-Aug-07 15:36
Mark Salsbery16-Aug-07 15:36 
GeneralRe: Limiting access to a class Pin
Waldermort16-Aug-07 15:40
Waldermort16-Aug-07 15:40 
QuestionOverrides-Messages concept in MFC Pin
sawerr16-Aug-07 11:37
sawerr16-Aug-07 11:37 
AnswerRe: Overrides-Messages concept in MFC Pin
Mark Salsbery16-Aug-07 13:17
Mark Salsbery16-Aug-07 13:17 
GeneralRe: Overrides-Messages concept in MFC Pin
sawerr16-Aug-07 14:03
sawerr16-Aug-07 14:03 
GeneralRe: Overrides-Messages concept in MFC Pin
Mark Salsbery16-Aug-07 14:27
Mark Salsbery16-Aug-07 14:27 
GeneralRe: Overrides-Messages concept in MFC Pin
bob1697216-Aug-07 14:22
bob1697216-Aug-07 14:22 
GeneralRe: Overrides-Messages concept in MFC Pin
Mark Salsbery16-Aug-07 14:49
Mark Salsbery16-Aug-07 14:49 
GeneralRe: Overrides-Messages concept in MFC Pin
bob1697216-Aug-07 15:53
bob1697216-Aug-07 15:53 
GeneralRe: Overrides-Messages concept in MFC Pin
Gary R. Wheeler18-Aug-07 3:57
Gary R. Wheeler18-Aug-07 3:57 

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.