![]() |
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
|
|||
|
|||
![]()
Hi,
I have written simple VBA macro to delete recurrence meetings in outlook(macro cod is given below). Could any one please tell me what is the simplest method to convert this macro into Outlook Add-in such that it should create button on Outlook toolbar and also register itself and start working. Sub DeleteMeetings() Dim olkItems As Outlook.Items Set olkItems = Session.GetDefaultFolder(olFolderCalendar).Items olkItems.IncludeRecurrences = True For Each olkAppt In olkItems olkAppt.Delete Next Set olkItems = Nothing MsgBox "Macro executed successfuly: " & Err End Sub -- Thanks, Paresh |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Untrusted code to TRUSTED code ... | KSor | Outlook and VBA | 1 | February 16th 09 02:52 PM |
Call DLL code from VBScript code-behind | Pavel Rosoi | Outlook - Using Forms | 3 | June 23rd 08 06:19 PM |
Convert .pst to .ost | CORaccounting | Outlook - Installation | 1 | October 28th 07 07:50 AM |
Convert OL VBA - Code into com add-in | Joerg Meier | Add-ins for Outlook | 3 | May 31st 06 06:14 AM |