PDA

Click to See Complete Forum and Search --> : Minimize Button


jovton
Mar 13th, 2001, 05:58 AM
Is there a function with which I can determine if a window has minimize button, given the window handle?

Vlatko
Mar 13th, 2001, 01:54 PM
Maybe something like this, not sure though:

if(GetWindowLong( hWnd,GWL_STYLE) & WS_MINIMIZEBOX)
{
//do something
}

jovton
Mar 14th, 2001, 03:23 AM
It works. Thanx much. ;)