Professional UI Solutions
Site Map   /  Register
 
 

Forum

Please Log In to post a new message or reply to an existing one. If you are not registered, please register.

NOTE: Some forums may be read-only if you are not currently subscribed to our technical support services.

Forums » Prof-UIS General Discussion » Have you fixed "well-known" bug with MINIMIZE&MAXIMIZE buttons in the CExtPaintManagerSKIN? Collapse All
Subject Author Date
Eugene Wineblat Sep 2, 2006 - 5:14 AM

I have corrected this with changing WS_MAXIMIZE to WS_MINIMIZE style comparising in the NcFrane_GetRects. If there is something else to fix with this problem, please tell me.

Eugene Wineblat Sep 5, 2006 - 4:54 AM

module : CExtSkinPaintManager
function : void CExtPaintManagerSkin::NcFrame_GetRects
row : 514 (of module)

...
        } // if( (dwWndStyle&WS_MAXIMIZEBOX) != 0 )
        if( (dwWndStyle&WS_MAXIMIZEBOX) != 0 )
...
TO
...
        } // if( (dwWndStyle&WS_MAXIMIZEBOX) != 0 )
        if( (dwWndStyle&WS_MINIIMIZEBOX) != 0 )
...

That’s all.

Technical Support Sep 5, 2006 - 12:00 PM

Thank you for fixing this. There was another, absolutely the same typo in the Office 2007 paint manager.

Technical Support Sep 4, 2006 - 12:10 PM

Could you send us the modified files?