Display only One Row of Tabs
Posted
by Zafir Anjum
on August 6th, 1998
Propsheet.EnableStackedTabs(FALSE);
Alternatively, the call to EnableStackedTabs() can be placed in the overridden version of OnCreate() in the CPropertySheet derived class. This call should precede the call to the base class version of OnCreate().

Comments
Text from MSDN, it states clearly
Posted by Legacy on 07/18/2002 12:00amOriginally posted by: Harret
ReplyDoing Both ways doesn't help me out !!!
Posted by Legacy on 09/14/2001 12:00amOriginally posted by: Deepak
hi,
Replyi've already tried applying these two methods, but failed.
Also when my tabs area gets wider than than property sheet area, the tabs doesn't adjust in two rows, rather the extra tabs goes out of sight.
I've created some pages at runtime. The application is a Dialog Based App. In which, modeless property sheet is a child of main dlg box. It is created as below...
//
propSheet = (CPropSheet*)new CPropSheet("PS",this,0);
propSheet->Create(this,WS_CHILD|DS_CONTROL);
//
If anyone could please help me out..., that'll be really nice.
Thankyou.
make page flat
Posted by Legacy on 04/12/2001 12:00amOriginally posted by: jimaaa
I want to make propertypage flat,not 3D look,How can I?
ReplyHow can I Display only One Row of Tabs only using APIs
Posted by Legacy on 08/14/2000 12:00amOriginally posted by: beginner
I've been bothered with this problem for some time, who can help me?
ReplyAdditional Space Not Utilized
Posted by Legacy on 06/18/1999 12:00amOriginally posted by: Steve Miller
ReplyDisplay one row of tabs but there is line spacing
Posted by Legacy on 04/26/1999 12:00amOriginally posted by: Goh Choon Lye
I have tried to display only one row of the tabs for
ReplyCPropertySheet by including the
m_PropertySheet.EnableStackedTabs(FALSE);
//m_PropertySheet is object of CPropertySheet
in the OnInitUpdate of my CFormView. It's working
but there is "line spacing" in the CPropertyPage
before displaying my other controls. When I select
other CPropertyPage and select back the previous
CPropertyPage, the "line spacing" is missing.
I need the help to get rid the "line spacing" when
that CPropertyPage is shown first time.
Thank you first for advice.