Hello,
In my application I have defined a window oWnd.
At a certain position in my application, the window may not be minimized. So I try to use ShowWindow() to make this happen.
I tried several possibilities :
ShowWindow(oWnd,1)
ShowWindow(oWnd,5)
ShowWindow(oWnd,9)
but nothing helps : the window is not put back into normal position.
What do I do wrong ?
Thanks a lot for any help.