I wonder how to identify in my win32 application, in which control the copying occurs. For example in EditBox, in RichEdit and etc.
In order to figure out whether the copying took place in my app or outside it, I used the following method:
//global variables
HWND hWnd;
DWORD ProcId;
HWND nextHandle;
DWORD currentID;
//then I call two functions on form create
currentID=GetCurrentProcessId();
nextHandle = SetClipboardViewer(Handle);
//then on WM_DRAWCLIPBOARD message I call
hWnd = GetClipboardOwner();
GetWindowThreadProcessId(hWnd,&ProcId);
// functions and checking by IDs whether
// the copying took place in or outside my application
if(lpdwProcessId==currentID) {...}
It works fine, but this is not a solution how to detect in whitch control (in my app) the copying occurs.
WM_DRAWCLIPBOARD, callGetFocusto find out which control has input focus. – Jonathan Potter Oct 14 '12 at 19:57