Click here to Skip to main content
16,015,166 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how to register dll or ocx file via c++ code Pin
Aescleal29-Jun-10 6:56
Aescleal29-Jun-10 6:56 
AnswerRe: how to register dll or ocx file via c++ code Pin
Rajesh R Subramanian25-Jun-10 10:46
professionalRajesh R Subramanian25-Jun-10 10:46 
GeneralRe: how to register dll or ocx file via c++ code Pin
b-rad31125-Jun-10 10:59
b-rad31125-Jun-10 10:59 
GeneralRe: how to register dll or ocx file via c++ code Pin
«_Superman_»25-Jun-10 17:34
professional«_Superman_»25-Jun-10 17:34 
AnswerRe: how to register dll or ocx file via c++ code Pin
KingsGambit25-Jun-10 19:45
KingsGambit25-Jun-10 19:45 
AnswerRe: how to register dll or ocx file via c++ code Pin
Shivanand Gupta26-Jun-10 2:47
Shivanand Gupta26-Jun-10 2:47 
QuestionGeneral MFC C++ question What does :: any class or object on the left hand side mean Pin
ForNow25-Jun-10 6:30
ForNow25-Jun-10 6:30 
AnswerRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
Aescleal25-Jun-10 6:49
Aescleal25-Jun-10 6:49 
If you see something like:

::DoSomethingGroovy( h, DSG_HELLO );

then that means that the programmer wants the compiler to use the function with the name DoSomethingGroovy from the global namespace. So if call is made in the member function of a class which also declares DoSomethingGroovy

class CGroovyThing
{
    public:
        void bleugh()
        {
            ::DoSomethingGroovy( h_, cmd_ );
        }

    private:
        void DoSomethingGroovy( HANDLE h, command cmd );
};


then the call will not use the class's version of the function.

Cheers,

Ash

Edited for a bit more clarity (I hope!)
AnswerRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
Niklas L25-Jun-10 6:50
Niklas L25-Jun-10 6:50 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
ForNow25-Jun-10 6:56
ForNow25-Jun-10 6:56 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
Rajesh R Subramanian25-Jun-10 9:15
professionalRajesh R Subramanian25-Jun-10 9:15 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
ForNow25-Jun-10 10:39
ForNow25-Jun-10 10:39 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
Tim Craig25-Jun-10 16:19
Tim Craig25-Jun-10 16:19 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
Rajesh R Subramanian25-Jun-10 21:06
professionalRajesh R Subramanian25-Jun-10 21:06 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
ForNow26-Jun-10 16:59
ForNow26-Jun-10 16:59 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
Tim Craig26-Jun-10 17:55
Tim Craig26-Jun-10 17:55 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
Niklas L25-Jun-10 20:55
Niklas L25-Jun-10 20:55 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
ForNow26-Jun-10 16:36
ForNow26-Jun-10 16:36 
AnswerRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
Rajesh R Subramanian25-Jun-10 9:12
professionalRajesh R Subramanian25-Jun-10 9:12 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
ForNow26-Jun-10 17:01
ForNow26-Jun-10 17:01 
GeneralRe: General MFC C++ question What does :: any class or object on the left hand side mean Pin
Tim Craig26-Jun-10 22:41
Tim Craig26-Jun-10 22:41 
QuestionKickoff towards OLE Pin
Code-o-mat25-Jun-10 1:41
Code-o-mat25-Jun-10 1:41 
AnswerRe: Kickoff towards OLE Pin
Richard MacCutchan25-Jun-10 2:33
mveRichard MacCutchan25-Jun-10 2:33 
GeneralRe: Kickoff towards OLE [modified] Pin
Code-o-mat25-Jun-10 2:58
Code-o-mat25-Jun-10 2:58 
GeneralRe: Kickoff towards OLE Pin
Richard MacCutchan25-Jun-10 3:14
mveRichard MacCutchan25-Jun-10 3:14 

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.