I created a Ribbon for my application, with the following XML:
	
	
	
		
However, only the "Print" and "Exit" buttons are shown.
I am creating this ribbon, as part of an A2K3 upgrade, to replace this toolbar.
		
		
	
	
		 
	
How can I solve this issue? Thanks in advance.
 
		Code:
	
	
	<customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui">
  <ribbon startFromScratch="true">
    <tabs>
      <tab id="dbCustomTab" label="Lone Mountain" visible="true">
        <group id="dbCustomGroup" label=" ">
          <button idMso="PrintDialogAccess" size="large" label="Print" enabled="true"/>
          <button idMso="FileSendAsAttachment" size="large" label="Email" enabled="true"/>
          <button idMso="ExportExcel" size="large" label="Excel" enabled="true"/>
          <button idMso="ExportWord" size="large" label="Word" enabled="true"/>
          <button idMso="FileExit" size="large" label="Exit" enabled="true"/>
        </group>
      </tab>
    </tabs>
  </ribbon>
</customUI>However, only the "Print" and "Exit" buttons are shown.
I am creating this ribbon, as part of an A2K3 upgrade, to replace this toolbar.
How can I solve this issue? Thanks in advance.
 
	 
			 
 
		 
 
		