Click here to Skip to main content
15,890,882 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Problem in Copying a data / image to a ClipBoard Pin
David Crow15-Mar-05 3:29
David Crow15-Mar-05 3:29 
GeneralRe: Problem in Copying a data / image to a ClipBoard Pin
zahid_ash15-Mar-05 18:28
zahid_ash15-Mar-05 18:28 
GeneralRe: Problem in Copying a data / image to a ClipBoard Pin
David Crow16-Mar-05 2:47
David Crow16-Mar-05 2:47 
GeneralRe: Problem in Copying a data / image to a ClipBoard Pin
zahid_ash16-Mar-05 2:57
zahid_ash16-Mar-05 2:57 
GeneralRe: Problem in Copying a data / image to a ClipBoard Pin
David Crow16-Mar-05 3:44
David Crow16-Mar-05 3:44 
GeneralRemoving Tool Settings Pin
Franz Klein15-Mar-05 1:02
Franz Klein15-Mar-05 1:02 
GeneralHooking Pin
Veera Raghavendra15-Mar-05 0:33
Veera Raghavendra15-Mar-05 0:33 
GeneralRe: Hooking Pin
caykahve15-Mar-05 2:20
caykahve15-Mar-05 2:20 
this function does the job when the keys are pressed while the application is on focus. maybe this will give you an idea. you can do something similar on the application side, within the function, which catches your hooking messages from the hooking dll.

BOOL CMyDialog::PreTranslate(MSG *pMsg)
{
  if(pMsg->message==WM_KEYDOWN)
  {
    if(pMsg->wParam==VK_ESCAPE)
      return TRUE; // totally disable "ESC"
    elsif (GetAsyncKeyState(VK_INSERT) < 0 && (pMsg->wParam=='A'))
     return TRUE; // totally disable "INSERT+A"
  }
  return CDialog::PreTranslateMessage(pMsg);
}

Generalwindows media format sdk 9 problem Pin
dafengche14-Mar-05 23:49
dafengche14-Mar-05 23:49 
GeneralError i don't need! Pin
Larsson14-Mar-05 23:21
Larsson14-Mar-05 23:21 
GeneralRe: Error i don't need! Pin
Anonymous14-Mar-05 23:27
Anonymous14-Mar-05 23:27 
GeneralRe: Error i don't need! Pin
Larsson14-Mar-05 23:45
Larsson14-Mar-05 23:45 
GeneralRe: Error i don't need! Pin
Larsson15-Mar-05 0:10
Larsson15-Mar-05 0:10 
GeneralRe: Error i don't need! Pin
Anonymous15-Mar-05 0:20
Anonymous15-Mar-05 0:20 
GeneralRe: Error i don't need! Pin
Larsson15-Mar-05 1:17
Larsson15-Mar-05 1:17 
GeneralRe: Error i don't need! Pin
neo_coder15-Mar-05 2:30
neo_coder15-Mar-05 2:30 
GeneralRe: Error i don't need! Pin
Larsson15-Mar-05 5:44
Larsson15-Mar-05 5:44 
GeneralRe: Error i don't need! Pin
David Crow15-Mar-05 5:57
David Crow15-Mar-05 5:57 
GeneralRe: Error i don't need! Pin
Larsson15-Mar-05 5:58
Larsson15-Mar-05 5:58 
GeneralRe: Error i don't need! Pin
David Crow15-Mar-05 2:37
David Crow15-Mar-05 2:37 
GeneralRe: Error i don't need! Pin
Larsson15-Mar-05 3:13
Larsson15-Mar-05 3:13 
GeneralMFC MDI default Child Frame creation Pin
Abebe14-Mar-05 23:11
Abebe14-Mar-05 23:11 
GeneralRe: MFC MDI default Child Frame creation Pin
TMaxwell8615-Mar-05 15:57
TMaxwell8615-Mar-05 15:57 
GeneralRe: MFC MDI default Child Frame creation Pin
Abebe16-Mar-05 0:07
Abebe16-Mar-05 0:07 
GeneralRefresh problem Pin
Raul Simcic14-Mar-05 22:07
Raul Simcic14-Mar-05 22:07 

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.