|
|
|
|
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 |
|
Mint Lee
|
Feb 7, 2005 - 7:14 AM
|
I’m using Prof-UIS 2.27. CExtFlatEdit control doesn’t displayed correctly when it placed in a groupbox. Please check for help.
|
|
Technical Support
|
Feb 9, 2005 - 4:46 AM
|
The CExtEdit class does not depend on the group box control in the same dialog template resource. Please run the ProfUIS_Controls sample application and check whether this bug exists in it. We believe there is no such a bug, so please compare the properties of your dialog resource with those in the ProfUIS_Controls project. Besides, check the mutual Z-order for the edit and group box. If the problem persists, just send us a test project.
|
|
Seongho Park
|
Jan 27, 2005 - 7:26 AM
|
Currently, I’m overing
OnPageContainerCaptionPressedStop() to detect which page caption is clicked. Sometime, I need to cancel expanding pages based on other condition, but in both function OnPageContainerCaptionPressedStart() and OnPageContainerCaptionPressedStop(), I can’t find a way to cancel the expantion. Is there any ways to prevent expanding the page by coding?
|
|
Technical Support
|
Jan 27, 2005 - 12:37 PM
|
Please note that this forum is about the Frame Features control. Prof-UIS General Discussion or Prof-UIS Tech Support Discussion are more appropriate topics for this message.
We think there is no reason not to use expanding pages because this may confuse the users of your application. If you need to prevent expanding, please add a handler for the WM_LBUTTONUP message like this:void CYourPageContainerWnd::OnLButtonUp(
UINT nFlags, CPoint point)
{
PAGE_ITEM_INFO * pPageInfoToExpand = NULL;
HIT_TEST_INFO _pht( point );
PageHitTest( _pht );
if( _pht.m_dwHitTestCode &
_EPCHT_ON_PAGE_CAPT_ANY )
{
ASSERT( _pht.m_pPageInfo != NULL );
if( _pht.m_pPageInfo ==
m_pPageInfoPressed )
pPageInfoToExpand =
m_pPageInfoPressed;
}
if( pPageInfoToExpand != NULL )
{
// analyze the pPageInfoToExpand and
// return if you need to cancel
// page expanding
return;
}
CExtPageContainerWnd::OnLButtonUp(
nFlags, point );
}
|
|
Guido-Jr Domenici
|
Jan 20, 2005 - 11:58 AM
|
Hi, I’m evaluating Frame Features 1.2. Congratulations for the great program!!! I’m trying to create a simple program, and I want to place a treeview control (for navigation purposes) docked to the left of the MDI Form that contais Frame Features 1.2 emulating MDI tabs. I don’t know how to do this. Is it possible? Thanks, Guido
|
|
Technical Support
|
Jan 21, 2005 - 3:13 AM
|
Dear Guido,
Thank you for your interest in Prof-UIS Frame Features!
We need to explain you behavior of SDI and MDI form windows with the Frame Features control inside.
In both cases Frame Features injects toolbars, menu bar, status bar and, optionally, MDI tabs. All these windows are placed close to the form window’s sides making the rest of form space in the center smaller. In case of MDI form, the center of the form is the MDI form container window (usually of the dark gray color) and it is repositioned automatically by Frame Features. You can make a tabbed MDI application with Frame Features and even keep all MDI child forms always maximized, but unfortunately you cannot inject any other window close to the MDI form container. This feature will be available in the next Frame Features releases after we add support for resizable panels. We can offer you the following solution. Just use a child frame control in the SDI form and make Frame Features use it as a center window in the form. The child frame will fill all the main form space that is free of any bars. This child frame should contain the outlook bar and a tab control with pages inside.
|
|
Technical Support
|
Nov 9, 2004 - 3:53 AM
|
We just published the first pre-release version of Frame Features and welcome you to post any questions and ideas you have about this ActiveX library!
|
|