Scott_Hall
Registered User.
- Local time
- Today, 12:02
- Joined
- Mar 27, 2017
- Messages
- 50
Howdy folks!
I’ve been struggling with the backstage portion of my custom ribbon and I can’t seem to make it work. I know that this can be done as I’ve found examples, but for some reason this just won’t layout for me.
The second (hopefully small) issue is that my ribbon pictures do not display. I got the code below straight from Microsoft yet my pictures don’t display. I made copies in BMP, JPG, and PNG. I put them in the database folder and in the \images folder.
My pictures in the \images\ folder display just fine on the standard part of the ribbon, but don’t show up in the backstage.
This is the Microsoft example I’m using: https://msdn.microsoft.com/en-us/li...ckstageView_CreatingThreeTypesofColumnLayouts
Does anyone have an idea why this won’t work for me? No errors are thrown, just no pictures appear and the text is poorly aligned.
I'm trying to get to this:
Thanks,
Scott
I’ve been struggling with the backstage portion of my custom ribbon and I can’t seem to make it work. I know that this can be done as I’ve found examples, but for some reason this just won’t layout for me.
The second (hopefully small) issue is that my ribbon pictures do not display. I got the code below straight from Microsoft yet my pictures don’t display. I made copies in BMP, JPG, and PNG. I put them in the database folder and in the \images folder.
My pictures in the \images\ folder display just fine on the standard part of the ribbon, but don’t show up in the backstage.
This is the Microsoft example I’m using: https://msdn.microsoft.com/en-us/li...ckstageView_CreatingThreeTypesofColumnLayouts
Does anyone have an idea why this won’t work for me? No errors are thrown, just no pictures appear and the text is poorly aligned.
I'm trying to get to this:
Thanks,
Scott
Code:
<backstage>
<tab idMso="TabInfo" visible="false"/>
<button idMso="FileSave" visible="false"/>
<button idMso="SaveObjectAs" visible="false"/>
<button idMso="FileSaveAsCurrentFileFormat" visible="false"/>
<button idMso="FileOpen" visible="false"/>
<button idMso="FileCloseDatabase" visible="false"/>
<tab idMso="TabRecent" visible="false"/>
<tab idMso="TabNew" visible="false"/>
<tab idMso="TabPrint" visible="false"/>
<tab idMso="TabShare" visible="false"/>
<tab idMso="TabHelp" visible="false"/>
<button idMso="ApplicationOptionsDialog" visible="false"/>
<button idMso="FileExit" visible="false"/>
<tab id="tabImages" label="Info" getTitle="OnGetTitle">
<firstColumn>
<group id="reviewersGroup" label="Info Team">
<topItems>
<layoutContainer id="headerLayout" layoutChildren="horizontal">
<labelControl id="spacerLabel" label=" " />
<labelControl id="nameHeaderLabel" label=" NAME" />
<labelControl id="roleHeaderLabel" label=" ROLE" />
</layoutContainer>
<layoutContainer id="arthurLayout" layoutChildren="horizontal">
<imageControl id="wrightImage" image="Wright" />
<labelControl id="arthurNameLabel" label=" Arthur Wright" />
<labelControl id="arthurRoleLabel" label=" Sponsor" />
</layoutContainer>
</topItems>
</firstColumn>
</group>
</tab>
Last edited: