Click here to Skip to main content
15,889,637 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Including an SDI in a Dialog based project Pin
cv_k3n26-Jul-06 3:55
cv_k3n26-Jul-06 3:55 
GeneralRe: Including an SDI in a Dialog based project Pin
Cedric Moonen26-Jul-06 4:01
Cedric Moonen26-Jul-06 4:01 
GeneralRe: Including an SDI in a Dialog based project Pin
Zac Howland26-Jul-06 4:10
Zac Howland26-Jul-06 4:10 
Questiondll hooking Pin
TusharKavali26-Jul-06 2:23
TusharKavali26-Jul-06 2:23 
AnswerRe: dll hooking Pin
_AnsHUMAN_ 26-Jul-06 2:28
_AnsHUMAN_ 26-Jul-06 2:28 
AnswerRe: dll hooking Pin
Hamid_RT26-Jul-06 2:36
Hamid_RT26-Jul-06 2:36 
QuestionHooking Pin
TusharKavali26-Jul-06 2:21
TusharKavali26-Jul-06 2:21 
AnswerRe: Hooking Pin
sudeesh26-Jul-06 2:32
sudeesh26-Jul-06 2:32 
u can use SetWindowsHookEx api.
u have to specify what type/id of Hook like Keyboard,GetMessage (for more info go to msdn and type setwindowshookex).

Then according to the hook type the hook procedure prototype changes.

export the hook procedure using
__declspec(dllexport) LRESULT CALLBACK HookProc(int nCode, WPARAM wParam, LPARAM lParam)
{
// here u can write the code.
// At last u have to call CallNextHookEx
// The handle returned by SetWindowsHookEx has to be passed to this module through another exported function or some user defined messages.
}

//

Regards

Sudeesh

Questionatuo starup services Pin
_tasleem26-Jul-06 2:03
_tasleem26-Jul-06 2:03 
AnswerRe: atuo starup services Pin
Matt Godbolt26-Jul-06 6:28
Matt Godbolt26-Jul-06 6:28 
Questionfiles to include while creating setup Pin
Tara1426-Jul-06 1:53
Tara1426-Jul-06 1:53 
AnswerRe: files to include while creating setup Pin
Parthi_Appu26-Jul-06 2:09
Parthi_Appu26-Jul-06 2:09 
AnswerRe: files to include while creating setup Pin
Ravi Bhavnani26-Jul-06 2:09
professionalRavi Bhavnani26-Jul-06 2:09 
AnswerRe: files to include while creating setup Pin
toxcct26-Jul-06 3:06
toxcct26-Jul-06 3:06 
GeneralRe: files to include while creating setup Pin
Tara1426-Jul-06 4:25
Tara1426-Jul-06 4:25 
GeneralRe: files to include while creating setup Pin
Tara1426-Jul-06 17:04
Tara1426-Jul-06 17:04 
AnswerRe: files to include while creating setup Pin
prasad_som26-Jul-06 19:41
prasad_som26-Jul-06 19:41 
GeneralRe: files to include while creating setup Pin
Tara1426-Jul-06 19:47
Tara1426-Jul-06 19:47 
GeneralRe: files to include while creating setup Pin
prasad_som26-Jul-06 20:36
prasad_som26-Jul-06 20:36 
GeneralRe: files to include while creating setup Pin
Tara1426-Jul-06 20:47
Tara1426-Jul-06 20:47 
GeneralRe: files to include while creating setup Pin
prasad_som26-Jul-06 21:05
prasad_som26-Jul-06 21:05 
GeneralRe: files to include while creating setup Pin
Tara1426-Jul-06 21:43
Tara1426-Jul-06 21:43 
QuestionProblem with CString! CXX0017 Pin
tanarnelinistit26-Jul-06 1:37
tanarnelinistit26-Jul-06 1:37 
AnswerRe: Problem with CString! CXX0017 Pin
Cedric Moonen26-Jul-06 1:40
Cedric Moonen26-Jul-06 1:40 
GeneralRe: Problem with CString! CXX0017 Pin
tanarnelinistit26-Jul-06 1:52
tanarnelinistit26-Jul-06 1:52 

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.