Print Page | Close Window

Ugly gripper in modeless CXTPPropertySheet

Printed From: Codejock Forums
Category: Codejock Products
Forum Name: Toolkit Pro
Forum Description: Topics Related to Codejock Toolkit Pro
URL: http://forum.codejock.com/forum_posts.asp?TID=18450
Printed Date: 19 June 2025 at 3:29am
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: Ugly gripper in modeless CXTPPropertySheet
Posted By: emen
Subject: Ugly gripper in modeless CXTPPropertySheet
Date Posted: 26 May 2011 at 5:29am
The resize gripper in a modeless CXTPPropertySheet paints over the property page, anyone know how to fix this?
Code for this:
class CSamplePropertySheet : public CXTPPropertySheet
{
public:
 CSamplePropertySheet() : CXTPPropertySheet(_T("CXTPPropertyPageTreeNavigator Sample"))
 {
  AddPage(&pageProperties);
  AddPage(&pageSample2);
 
  SetResizable();
 }
 CTabTreePage pageProperties;
 CTabSamplePage pageSample2;

};

CSamplePropertySheet* ps = new CSamplePropertySheet();
ps->Create();
Thanks.




Replies:
Posted By: Oleg
Date Posted: 27 May 2011 at 3:24am
Hello,

Thanks, checking how to move it to bottom.

You can remove this gripper if add to CSamplePropertySheet

BOOL CreateClient()
{
if (!CXTPPropertySheet::CreateClient())
return FALSE;

m_scSizeIcon.DestroyWindow();

return TRUE;
}



-------------
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS


Posted By: emen
Date Posted: 27 May 2011 at 3:47am

That's it! Smile

 

Thank you very much!



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.04 - http://www.webwizforums.com
Copyright ©2001-2021 Web Wiz Ltd. - https://www.webwiz.net