Access Other Forms in the Region

Add-in Express™ Support Service
That's what is more important than anything else

Access Other Forms in the Region
 
Andrew Krieger


Guest


My form is the ToDoBarBottom and there is another custom form there that was developed by some else. Is it possible to hide their form?
Posted 17 Jan, 2011 16:19:35 Top
Eugene Astafiev


Guest


Hi Andrew,

You are not allowed to hide foreign forms. Instead, you can show your own form on top of others. You just need to use the following code:

private void ADXOlForm1_ADXAfterFormShow()
{
    Activate();
}


Please note that I used the ADXAfterFormShow event of the AddinExpress.OL.ADXOlForm class for such task.
Posted 18 Jan, 2011 06:48:15 Top