Hello,
Please view the following XML code:
I don't know much about XML, but I have the above code in one of my workbooks.
In respect to this code, all I see under the office button is "New", "Open" and "Save" menu items.
I assume this comes from setting "StartFromScrtach" to true.
However, I also need the "SaveAs" item under the office button!
Can someone show me what I need to add to my XML code above in order to add in the "SaveAs" item?
Thanks
s
Please view the following XML code:
PHP:
<customUI ******="RibbonX.Ribbon******" xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon startFromScratch="true">
<tabs>
<tab id="customTab" label="CONTROLS" insertAfterMso="TabHome">
<group id="customGroup1" label="Logic Elements">
<button id="customButton1" label="Add New Block" size="large" onAction="Sheet1.Add_Block_Click" imageMso="ViewBackToColorView" />
<button id="customButton2" label="Delete Block" size="large" onAction="Sheet1.Delete_Block_Click" imageMso="CellsDelete" />
</group>
</tab>
</tabs>
</ribbon>
</customUI>
I don't know much about XML, but I have the above code in one of my workbooks.
In respect to this code, all I see under the office button is "New", "Open" and "Save" menu items.
I assume this comes from setting "StartFromScrtach" to true.
However, I also need the "SaveAs" item under the office button!
Can someone show me what I need to add to my XML code above in order to add in the "SaveAs" item?
Thanks
s