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.
Subject |
Author |
Date |
|
Eddie Judson
|
Aug 31, 2005 - 6:57 AM
|
Is there any way of stopping the pages in the PageNavigator from collapsing into small icons at the bottom? Or alternatively setting the height of the splitter?<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p> Regards,<o:p></o:p> Eddie
|
|
Technical Support
|
Aug 31, 2005 - 9:02 AM
|
You can simply remove the splitter if you override the CExtPageNavigatorWnd::OnQuerySplitterHeight() virtual method in a CExtPageNavigatorWnd -derived class and return zero in it: INT CMyPageNavigatorWnd::OnQuerySplitterHeight() const
{
ASSERT_VALID( this );
return 0;
} It seems we need to add the corresponding flag to control the splitter visibility. So, we added this request to our TODO list.
|
|