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

C / C++ / MFC

 
AnswerRe: Template function compilation and linking question. Pin
cp987622-May-07 14:47
cp987622-May-07 14:47 
AnswerRe: Template function compilation and linking question. Pin
cmk22-May-07 18:07
cmk22-May-07 18:07 
AnswerRe: Template function compilation and linking question. Pin
Michael Dunn22-May-07 20:44
sitebuilderMichael Dunn22-May-07 20:44 
GeneralRe: Template function compilation and linking question. Pin
Maximilien23-May-07 13:17
Maximilien23-May-07 13:17 
QuestionMultiple string resources Pin
rrrado22-May-07 4:42
rrrado22-May-07 4:42 
AnswerRe: Multiple string resources Pin
Sameerkumar Namdeo23-May-07 0:51
Sameerkumar Namdeo23-May-07 0:51 
GeneralRe: Multiple string resources Pin
rrrado23-May-07 21:50
rrrado23-May-07 21:50 
QuestionProblems in lock hotkeys like Alt+Tab,Alt+Esc,Ctrl+Alt+Del etc Pin
abhiakude22-May-07 4:18
abhiakude22-May-07 4:18 
Hello All,
In our project client need to lock all HotKeys.I have tried
SetWindowHookEx(Wh_KeyBoard,KeyProc,...);
But it lock all keys except hotkeys
LPRESULT WINAPI CALLBACK KeyProc(int nCode,WPARAM wParam,LPARAM lParam)
{
......
}
So I have tried
#define _WIN32_WINNT 0x0400
#include <windows.h>

SetWindowHookEx(Wh_KeyBoard_LL,LowLevelKeyBoardProc,...);

LPRESULT WINAPI CALLBACK LowLevelKeyBoardProc(int nCode,WPARAM wParam,LPARAM lParam)
{
......
PKDLLHOOKSTRUCT p=(PKDLLHOOKSTRUCT)lParam;
or
KDLLHOOKSTRUCT *p=(KDLLHOOKSTRUCT *)lParam;


}

But it doent work WH_KEYBOARD_LL doesnt call the LowLevelinputProc
even dll also not working
I have installed vc6.0 and Platform SDK Servoce Pack 2
Plese give me any information that how I can Lock the Hotkeys
QuestionRe: Problems in lock hotkeys like Alt+Tab,Alt+Esc,Ctrl+Alt+Del etc Pin
David Crow22-May-07 6:30
David Crow22-May-07 6:30 
AnswerRe: Problems in lock hotkeys like Alt+Tab,Alt+Esc,Ctrl+Alt+Del etc Pin
abhiakude22-May-07 19:20
abhiakude22-May-07 19:20 
GeneralRe: Problems in lock hotkeys like Alt+Tab,Alt+Esc,Ctrl+Alt+Del etc Pin
David Crow23-May-07 2:53
David Crow23-May-07 2:53 
GeneralRe: Problems in lock hotkeys like Alt+Tab,Alt+Esc,Ctrl+Alt+Del etc Pin
abhiakude24-May-07 21:13
abhiakude24-May-07 21:13 
GeneralRe: Problems in lock hotkeys like Alt+Tab,Alt+Esc,Ctrl+Alt+Del etc Pin
David Crow25-May-07 2:38
David Crow25-May-07 2:38 
QuestionReference Pin
Kiran Pinjala22-May-07 4:18
Kiran Pinjala22-May-07 4:18 
AnswerRe: Reference Pin
Manoj Kumar Rai22-May-07 4:38
professionalManoj Kumar Rai22-May-07 4:38 
GeneralRe: Reference Pin
Arman S.22-May-07 5:13
Arman S.22-May-07 5:13 
AnswerRe: Reference Pin
Arman S.22-May-07 5:18
Arman S.22-May-07 5:18 
AnswerRe: Reference Pin
jhwurmbach22-May-07 5:43
jhwurmbach22-May-07 5:43 
Question[Message Deleted] Pin
dodoxor22-May-07 4:17
dodoxor22-May-07 4:17 
AnswerRe: Return pointer Pin
Manoj Kumar Rai22-May-07 4:43
professionalManoj Kumar Rai22-May-07 4:43 
AnswerTry to post you question in the C++/CLI forum. Pin
CPallini22-May-07 4:44
mveCPallini22-May-07 4:44 
GeneralRe: Try to post you question in the C++/CLI forum. Pin
Hamid_RT22-May-07 7:52
Hamid_RT22-May-07 7:52 
GeneralRe: Try to post you question in the C++/CLI forum. Pin
CPallini22-May-07 7:56
mveCPallini22-May-07 7:56 
GeneralRe: Try to post you question in the C++/CLI forum. Pin
Hamid_RT22-May-07 8:20
Hamid_RT22-May-07 8:20 
GeneralRe: Try to post you question in the C++/CLI forum. Pin
CPallini22-May-07 9:32
mveCPallini22-May-07 9:32 

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.