Thread
:
How to make add-in
View Single Post
#
3
September 12th 07, 02:28 PM posted to microsoft.public.outlook.program_addins
KAKA
external usenet poster
Posts: 29
How to make add-in
Take this code for example:
----
Sub getDay()
dtmThisDay = Day(Date)
dtmThisMonth = Month(Date)
dtmThisYear = Year(Date)
strCheckDate = dtmThisMonth & "-" & dtmThisDay & "-" & dtmThisYear
If Weekday(strCheckDate) = 4 Then
MsgBox strCheckDate
End If
End Sub
----
Could you do me a favor to introduce the process to create the add-in for me?
Thanks very much. I am a beginner here.
My mail address is
Thanks.
"Ken Slovak - [MVP - Outlook]" wrote:
You can't deploy a VBA module as a COM addin. You will need to re-write your
code in a language such as managed or unmanaged VB, C#, Delphi, C++ or some
other language. Take a look at the information on COM addins at
www.outlookcode.com
.
--
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
"KAKA" wrote in message
...
I had write the script in outlook VBA as a module.
1. I want it run in timing, bu I don't know the way.
2. Now I want to make it as a set up or Dll to deploy it to domain users.
So could you please show me a way?
Thanks.
KAKA
View Public Profile
View message headers
Find all posts by KAKA
Find all threads started by KAKA
Ads