Posted on February 21, 2010.
What is the message sent to imm When I click the minimize button of the application as Notepad? Hello,
I'm workin on EMI.
in my DllMain,
I registered and created a window
wc.style = CS_HREDRAW CS_VREDRAW;
wc.lpfnWndProc = SettingsWndProc;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = hInst;
.......
.......
handle = CreateWindow ("SETTINGS_CLASS_NAM ... the wind,
WS_POPUP | WS_OVERLAPPED | WS_BORDER | WS_CL ...
50.50, NULL, NULL, hInstance, NULL);
This window has no parent.
------------
Now, when everythin is workin fine,
DLL attaches it self to Notepad, etc. ...
Now I want to reduce the Notepad window is minimized.
ie when I click the minimize button.
how to DIS?
--------------------
You should see the Notepad receive a message with wParam == WM_SIZE SIZE_MINIMIZED.