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 |
|
tera tera
|
Oct 4, 2009 - 9:14 PM
|
Hello. When I double-click the following points.
A dialog is displayed.
I do not want to display this dialog.
In addition, Assert is displayed if I set it..
|
|
tera tera
|
Oct 6, 2009 - 7:12 PM
|
|
|
Technical Support
|
Oct 7, 2009 - 9:53 AM
|
Fixed. We added the following method into the CExtRibbonPage class.
virtual bool DoFormCustomization(
bool bDelayShow // = false
);
bool CExtRibbonPage::DoFormCustomization(
bool bDelayShow // = false
)
{
ASSERT_VALID( this );
bDelayShow;
return false;
}
|
|
Technical Support
|
Oct 5, 2009 - 12:48 PM
|
The CExtCustomizeSite::DoFormCustomization() virtual method displays the customization form. You can override it and return false if you want to prevent the customization form displaying.
|
|
tera tera
|
Oct 5, 2009 - 7:33 PM
|
>You can override it and return false if you want to prevent the customization form displaying.
All right. By the way, when I set new tool bar.
Assert is displayed.
|
|
Technical Support
|
Oct 6, 2009 - 1:19 PM
|
We cannot reproduce this assertion in Prof-UIS sample applications. Please provide us with the call stack listing or test project.
|
|