ADX panes interaction

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

ADX panes interaction
 
Andriy


Guest


Hello.

I have two questions :

1. Am I able to somehow hide search box on folder view pane?
2. Can I interact with ADX panes which created in other Add-ins?
Posted 22 Aug, 2018 09:42:23 Top
Andrei Smolin


Add-in Express team


Posts: 18821
Joined: 2006-05-11
Hello Andriy,

1. No.
2. You can access a COM add-in via the following code path:

{an Application object such as Excel.Application}.COMAddins.Item(strMyComAddinProgId).Object.MyPublicPropertyOrMethod.

1. strMyComAddinProgId - see the ProgId attribute of your add-in module.
2. MyPublicPropertyOrMethod is called via late binding (see System.Type.InvokeMember in MSDN or search through our forums)

See also http://www.add-in-express.com/creating-addins-blog/2010/07/02/standalone-application-addin-communicate/.


Andrei Smolin
Add-in Express Team Leader
Posted 22 Aug, 2018 09:56:59 Top