Hi there,
I have not have to much to do with XML and by the way Office 2007 is looking I am going to be needing to learn quickly.
I am trying to make a ribbon in a word template using XML.
I found this example on microsoft but it only contains 1 group. What do I need to do to add another group with a command button?
This is my code.
Code
<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
<ribbon>
<tabs>
<tab id="CustomTab" label="My Tab">
<group id="SampleGroup" label="Sample Group">
<button id="Button" label="Insert Company Name" image="logo.bmp" size="large" onAction="ThisDocument.InsertCompanyName" />
</group >
</tab>
</tabs>
</ribbon>
</customUI>
Display More
Thanks for your help!!