InvalidateControl on idMso

R

Rabaté

Hello,

Context : InvalidateControl on an internal Word command does not trigger
callback. If Invalidate is used it does trigger the callback
Is InvalidateControl supposed to work for idMso?

Thank you

<customUI onLoad="onLoad"
xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<tabs>
<tab idMso="TabHome" getVisible="getVisible" />
</tabs>
</ribbon>
</customUI>
 
B

Bob Buckland ?:-\)

Hi Nicolas,

You may want to also post this question to the RibbonX forum on
http://pschmid.net and/or the MS Office XML group using the link below and include there a little more detail on your environment
and what you'd like to accomplish overall.

============
Hello,

Context : InvalidateControl on an internal Word command does not trigger
callback. If Invalidate is used it does trigger the callback
Is InvalidateControl supposed to work for idMso?

Thank you

<customUI onLoad="onLoad"
xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<tabs>
<tab idMso="TabHome" getVisible="getVisible" />
</tabs>
</ribbon>
</customUI>
--
Nicolas <<
--
Please let us know if this has helped,

Bob Buckland ?:)
MS Office System Products MVP

LINKS
A. Specific newsgroup/discussion group mentioned in this message:
news://msnews.microsoft.com/microsoft.public.office.xml
or via browser:
http://microsoft.com/communities/newsgroups/en-us/?dg=microsoft.public.office.xml

B. MS Office Community discussion/newsgroups via Web Browser
http://microsoft.com/office/community/en-us/default.mspx
or
Microsoft hosted newsgroups via Outlook Express/newsreader
news://msnews.microsoft.com
 
R

Rabaté

Thank you Bob to redirect me to the right place.
What I'd like to achieve for instance : when certains conditions are met, I
want to make some Mso tabs invisible. As I tried to explain, if I use
InvalidateControl("TabHome") this will not trigger getVisible, whilst if I
use Invalidate (that invalidating all controls), getVisible for "TabHome"
will be triggered. The question that arises is : do I use the right tab name
("TabHome"); is there any specific notation to invalidate an Mso control?
Thank you
 
Top