Hello all, im trying to read the message WM_SHOWWINDOW to know when my parent
window is being restored after being minimized.
But it appears that i cant read the lParam the right way ( or that i did not understood why and when that message is sent ?)
should it works this way :
case WM_SHOWWINDOW:
if(lParam == SW_PARENTOPENING)
{
do something there.
}
return 0;