![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
What would be the best way to create, raise and handle a custom event from
Outlook? The scenario I have is that my client would like to have two levels of reminders from an appointment in an Outlook calendar. i can use the default reminder for one of them, but I'm not exactly sure about the other reminder. I am using Outlook 2003, and can write any code in VBA, script, and Visual Studio 2005 Tools For Office. I need to do this as soon as possible. Thanks! Theresa |
#2
|
|||
|
|||
![]()
Am Tue, 9 May 2006 10:07:58 -0500 schrieb Theresa Smallwood:
Theresa, IŽd create a COM Add-In. Public classes can raise events: SampleClass Public Event TheSampleEvent() Private Sub RaiseMyEvent() Raise TheSampleEvent()() End Sub /SampleClass client class or form Private WithEvents SampleClass Private Sub SampleClass_TheSampleEvent()() End Sub /client class or form -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook -- www.vbOffice.net -- What would be the best way to create, raise and handle a custom event from Outlook? The scenario I have is that my client would like to have two levels of reminders from an appointment in an Outlook calendar. i can use the default reminder for one of them, but I'm not exactly sure about the other reminder. I am using Outlook 2003, and can write any code in VBA, script, and Visual Studio 2005 Tools For Office. I need to do this as soon as possible. Thanks! Theresa |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Creating Custom Events | Theresa Smallwood | Outlook - General Queries | 0 | May 9th 06 05:07 PM |
Emailing a contact vCard with custom form loses all custom info | Kim | Outlook - Using Contacts | 7 | April 27th 06 01:21 AM |
MSG Custom properties on right click custom tab | [email protected] | Add-ins for Outlook | 1 | February 1st 06 07:00 PM |
MSG Custom properties on right click custom tab | Steph | Outlook and VBA | 1 | February 1st 06 06:55 PM |
Cannot programmatically open custom message in custom form | ms | Outlook - Using Forms | 1 | January 20th 06 04:01 PM |