I am not seeing an Appointment.Send Event, rather an Send Method.
When trying to make the event handler for the send method I get the
following error
"Cannot assign to 'Send' because it is a 'method group' "
Here is the syntax
AppointmentItem _appt = this.OutlookItem as Outlook.AppointmentItem;
if(_appt == null)
return;
_appt.Send += new
Outlook.ApplicationEvents_11_ItemSendEventHandler( Application_ItemSend);
What am I missing?
"Ken Slovak - [MVP - Outlook]" wrote:
It doesn't matter what type of project it is, it's still using the Outlook
object model.
If you have an appointment item you have an item. AppointmentItem has a Send
event that you can handle. Look at the object browser.
--
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
"BigDubb" wrote in message
...
There is no Item object in the parameters, nor understood by the class
associated to the new region.
Can you clarify further?
Again, this is not a VBA project, it is a VS2008 C# project.