A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

convert VBA code to Add-in



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old March 21st 09, 09:13 AM posted to microsoft.public.outlook.program_vba
masani paresh[_3_]
external usenet poster
 
Posts: 18
Default convert VBA code to Add-in

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  
Old March 23rd 09, 01:27 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default convert VBA code to Add-in

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
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


All times are GMT +1. The time now is 06:27 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.