You're supplying the XML when GetCustomUI() calls for
"Microsoft.Outlook.MeetingRequest.Send"?
Tab idMSO = "TabNewMailMessage"
Group idMSO = "GroupSend"
Control idMSO = "SendDefault"
That's for a meeting request.
You can download the schemas for all the ribbons in Office 2007 from the
Office Developer site at MSDN.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm
"GR" wrote in message
...
I am not having any luck capturing the event when a user presses the
large size "Send" button an a meeting form. I get the event for the
menu "Send" command, but not the button.
I am assuming that it is probably poorly formed XML string I am using
in the IRibbonExtensibility_GetCustomUI function. I have played around
with it a bunch but noting seems to work. This is the latest attemp of
what I was using:
"customUI xmlns=""http://
schemas.microsoft.com/office/2006/01/customui""" & _
"ribbon" & _
"tabs" & _
"tab idMso=""TabHome""" & _
"group idMso=""Send""" & _
"button idMso=""SendDefault""
onAction=""SendButton_Action"" /" & _
"/group" & _
"/tab" & _
"/tabs" & _
"/ribbon" & _
"/customUI"
Does anyone have an example XML string that captures that "large
button" on the actual form?
Thanks!