Frothingslosh
Premier Pale Stale Ale
- Local time
- Today, 01:24
- Joined
- Oct 17, 2012
- Messages
- 3,276
I'm trying to modify the Ribbon for an app.
My employer has a VERY strict 'no installing anything' policy.
That means that it's turning out to be INCREDIBLY difficult to find idMso names for tabs and groups, as the single, solitary thing everyone who ever answers custom Ribbon questions points to is an .exe file available from Microsoft that installs something with a list of all necessary names. Thanks to the policy I mentioned, though, I am absolutely unable to use that tool.
Could someone PLEASE tell me the idMso names for the following groups in the Access ribbon:
My employer has a VERY strict 'no installing anything' policy.
That means that it's turning out to be INCREDIBLY difficult to find idMso names for tabs and groups, as the single, solitary thing everyone who ever answers custom Ribbon questions points to is an .exe file available from Microsoft that installs something with a list of all necessary names. Thanks to the policy I mentioned, though, I am absolutely unable to use that tool.
Could someone PLEASE tell me the idMso names for the following groups in the Access ribbon:
- Views (on the Home tab)
- SharePoint Lists (on the External Data tab)
Code:
<customUI xmlns="[URL]http://schemas.microsoft.com/office/2006/01/customui[/URL]">
<ribbon startFromScratch="false">
<tabs>
<tab idMso="TabHome">
<group idMso="GroupViews" visible="false" />
</tab>
<tab idMso="TabCreate" visible="false" />
<tab idMso="TabExternalData">
<group idMso="GroupImport" visible="false" />
<group idMso="GroupCollectData" visible="false" />
<group idMso="GroupSharePointLists" visible="false" />
</tab>
<tab idMso="TabDatabaseTools" visible="false" />
<tab idMso="TabAddIns" visible="false" />
</tabs>
</ribbon>
</customUI>