View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Karen[_13_] Karen[_13_] is offline
external usenet poster
 
Posts: 3
Default Macro Fault on Custom Ribbon-Success!!

Thanks a lot, I had

Sub myButton_ClickHandler(control As IRibbonControl)
MsgBox "MyButton was clicked!"
End Sub

in ThisWorkbook and it did not work

I moved it to to the Modules folder in that workbook to Module 1(not
creative name but I'm just playing now) and it worked :)


Karen Hagerman

"Ron de Bruin" wrote in message
...
Hi Karen

Look the sub like this in the VBA module

'Callback for customButton1 onAction
Sub Macro1(control as IRibbonControl)

End Sub



More info here
http://www.rondebruin.nl/ribbon.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Karen" wrote in message
...
Hi,

I'm trying to create my first custom ribbon, using example code. I saved
a workbook as testingtoolbar.xlsm as well as testingtoolbar.xlam.

The ribbons are visible as well as the solitary test button but when the
button is activated I get the following error message:

"Cannot run the macro 'myButton_ClickHandler'. The macro may not be
available in this workbook or all macros may be disabled."

The folder is a trusted location, it is the local user XLStart folder.
I have enabled all macros

Any suggestions as to how to enable macros for a custom ribbon are welcome
:)

Karen