I am having a go at creating an Excel add-in with Visual Studio, however I cannot get the buttons to work.
I have added buttons as such... ExcelToolsRibbon.xml
<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" onLoad="Ribbon_Load">
<ribbon>
<tabs>
<tab id="DropshipToolsTab" label="Dropship Tools" insertAfterMso="TabHome">
<group id="TextGroup" label="Text">
<button id="LowerTextButton" label="Lower" size="normal" onAction="LowerTextButton_Click" />
<button id="ProperTextButton" label="Proper" size="normal" onAction="ProperTextButton_Click"/>
<button id="UpperTextButton" label="Upper" size="normal" onAction="UpperTextButton_Click"/>
</group>
</tab>
</tabs>
</ribbon>
</customUI>
The ribbon loads fine, as I can see the buttons when Excel runs, but when I click on the buttons nothing happens.
using System;
using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using Office = Microsoft.Office.Core;
namespace ExcelTools
{
[ComVisible(true)]
public class ExcelToolsRibbon : Office.IRibbonExtensibility
{
private Office.IRibbonUI ribbon;
public ExcelToolsRibbon()
{
}
#region IRibbonExtensibility Members
public string GetCustomUI(string ribbonID)
{
return GetResourceText("ExcelTools.ExcelToolsRibbon.xml");
}
#endregion
#region Ribbon Callbacks
//Create callback methods here. For more information about adding callback methods, visit https://go.microsoft.com/fwlink/?LinkID=271226
public void Ribbon_Load(Office.IRibbonUI ribbonUI)
{
this.ribbon = ribbonUI;
}
private void LowerTextButton_Click(Office.IRibbonControl control)
{
MessageBox.Show("Button pressed");
}
private void ProperTextButton_Click()
{
MessageBox.Show("Button pressed");
}
private void UpperTextButton_Click()
{
MessageBox.Show("Button pressed");
}
#endregion
#region Helpers
private static string GetResourceText(string resourceName)
{
Assembly asm = Assembly.GetExecutingAssembly();
string[] resourceNames = asm.GetManifestResourceNames();
for (int i = 0; i < resourceNames.Length; ++i)
{
if (string.Compare(resourceName, resourceNames[i], StringComparison.OrdinalIgnoreCase) == 0)
{
using (StreamReader resourceReader = new StreamReader(asm.GetManifestResourceStream(resourceNames[i])))
{
if (resourceReader != null)
{
return resourceReader.ReadToEnd();
}
}
}
}
return null;
}
#endregion
}
}
Any help is greatly appreciated.
Figures it out
Need to be public and need the IRibbonControl