Is there a function with which I can determine if a window has minimize button, given the window handle?
jovton
Maybe something like this, not sure though: Code: if(GetWindowLong( hWnd,GWL_STYLE) & WS_MINIMIZEBOX) { //do something }
if(GetWindowLong( hWnd,GWL_STYLE) & WS_MINIMIZEBOX) { //do something }
I am become death, the destroyer of worlds. mail:[email protected] Visual Basic 6.0 & .NETVisual C++ 6.0 & .NETASPLISPPROLOGCPascal
It works. Thanx much.
Forum Rules