Click here to Skip to main content
16,005,114 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionLinker error:? Pin
$uresh $hanmugam9-May-07 3:36
$uresh $hanmugam9-May-07 3:36 
AnswerRe: Linker error:? Pin
Hans Dietrich9-May-07 3:45
mentorHans Dietrich9-May-07 3:45 
GeneralRe: Linker error:? [modified] Pin
$uresh $hanmugam9-May-07 20:43
$uresh $hanmugam9-May-07 20:43 
AnswerRe: Linker error:? Pin
Cedric Moonen9-May-07 3:46
Cedric Moonen9-May-07 3:46 
Questionstart menu Pin
prathuraj9-May-07 3:31
prathuraj9-May-07 3:31 
AnswerRe: start menu Pin
Hans Dietrich9-May-07 3:35
mentorHans Dietrich9-May-07 3:35 
GeneralRe: start menu Pin
prathuraj9-May-07 6:05
prathuraj9-May-07 6:05 
GeneralRe: start menu Pin
Hans Dietrich9-May-07 6:56
mentorHans Dietrich9-May-07 6:56 
First, take a look at this article.

Next, replace the msghook function with code similar to this:
static LRESULT CALLBACK msghook(int nCode, WPARAM wParam, LPARAM lParam)
{
    KBDLLHOOKSTRUCT *pkbhs = (KBDLLHOOKSTRUCT *) lParam;
    BOOL bControlKeyDown = 0;
    switch (nCode)
    {
        case HC_ACTION:
        {
            // Disable the WINDOWS key
            if (pkbhs->vkCode == VK_LWIN || pkbhs->vkCode == VK_RWIN)
                return 1;
            break;
        }
        default:
            break;
    }
    return CallNextHookEx (hHook, nCode, wParam, lParam);
} // msghook



QuestionRe: start menu Pin
Rajesh R Subramanian9-May-07 4:43
professionalRajesh R Subramanian9-May-07 4:43 
AnswerRe: start menu Pin
prathuraj9-May-07 6:04
prathuraj9-May-07 6:04 
GeneralRe: start menu Pin
Rajesh R Subramanian9-May-07 6:48
professionalRajesh R Subramanian9-May-07 6:48 
QuestionRe: start menu Pin
David Crow9-May-07 8:14
David Crow9-May-07 8:14 
AnswerRe: start menu Pin
Rajesh R Subramanian9-May-07 8:32
professionalRajesh R Subramanian9-May-07 8:32 
Questioncreate audio buffer Pin
Letherian9-May-07 3:30
Letherian9-May-07 3:30 
AnswerRe: create audio buffer Pin
Mark Salsbery9-May-07 4:39
Mark Salsbery9-May-07 4:39 
AnswerRe: create audio buffer Pin
Maximilien9-May-07 5:03
Maximilien9-May-07 5:03 
AnswerRe: create audio buffer Pin
Letherian9-May-07 5:17
Letherian9-May-07 5:17 
AnswerRe: create audio buffer Pin
normanS9-May-07 11:01
normanS9-May-07 11:01 
AnswerRe: create audio buffer Pin
normanS10-May-07 9:53
normanS10-May-07 9:53 
QuestionHow to Copy an Excel Worksheet Pin
_Nanon_9-May-07 3:22
_Nanon_9-May-07 3:22 
AnswerRe: How to Copy an Excel Worksheet Pin
led mike9-May-07 4:37
led mike9-May-07 4:37 
GeneralRe: How to Copy an Excel Worksheet Pin
_Nanon_9-May-07 5:10
_Nanon_9-May-07 5:10 
GeneralRe: How to Copy an Excel Worksheet Pin
Roger Stoltz9-May-07 5:31
Roger Stoltz9-May-07 5:31 
GeneralRe: How to Copy an Excel Worksheet Pin
_Nanon_9-May-07 5:55
_Nanon_9-May-07 5:55 
GeneralRe: How to Copy an Excel Worksheet Pin
led mike9-May-07 5:33
led mike9-May-07 5:33 

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.