![]() |
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 |
#2
|
|||
|
|||
![]()
Using what development platform, language and Outlook version?
There is no VBA to addin converter, you first start with whatever platform and language you want and set up a skeleton addin, then copy in your VBA code and if necessary translate it into the language you're using. If you intend to use managed code you will need to somehow shim your addin so it has its own AppDomain, either using VATO or the COM shim wizard. If using VB.NET you need to translate the code since VB.NET has many differences from VBA code (for one thing Long is 64-bit and Integer is 32-bit). VB6 code is much closer to VBA code. You then need to register your addin and deploy it as well as any dependencies and prerequisites, such as the Framework for managed code. -- 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 "masani paresh" wrote in message ... 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 |