Best Way To Hide ADXOlForm

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

Best Way To Hide ADXOlForm
 
Calvin Nguyen




Posts: 15
Joined: 2006-09-29

Hi there,

What is the most effective way to dynamically hide an ADX X form? The form is contained in an inspector. I am currently setting the width and height to zero, but this still leaves an outline which can clearly be seen.

Is there a way to make it completely invisible? Or if not, to at least change the color of the outline to blend in with the form's surroundings?

Thanks,

Calvin
Posted 05 Dec, 2006 17:21:19 Top
Fedor Shihantsov


Guest


Hi Calvin,

The current version does not allow to completely hide an ADX X form at run-time.
Currently, we are working on the new major version that will allow to do this.

As to the Explorer form, you can use the ADXOlFormsManager.ADXFolderSwitch event in the following way:

private void adxOlFormsManager1_ADXFolderSwitch(object sender, AddinExpress.OL.FolderSwitchEventArgs args)
{
    bool MyCondition = ...;
    args.ShowForm = MyCondition;
}


P.S. Note that we take up your forum requests in the order we receive them.
Besides, it may take us some time to investigate your issue. Please be sure we will let you know as soon as the best possible solution is found.
Posted 06 Dec, 2006 12:38:14 Top