Hello,
I created a simple window.
When the user press Done, in the handler in WndProc I put an
notification icon on the try then I call:
ShowWindow(hWnd,SW_HIDE);
UpdateWindow(hWnd);
Thw window is gone as expected. Cool !!!
When the icon is clicked, in the message handler and I call the
sequence:
ShowWindow(hWnd,SW_SHOW);
UpdateWindow(hWnd);
BringWindowToTop(hWnd);
Surprize, the window is still hidden. The message is received and this
sequence it is executed, I stepped thru it from debuger. Yet, the window
is still shy to show it face.
Any idea why this may happen ?
I am supposed to do smtg. else to hide/show a window ?
TIA.