Haha! Thanks for your reply.
Is is possible that the add-in could be a background process when outlook
starts and just run once a week ?
"Ken Slovak - [MVP - Outlook]" wrote:
There's no way to explain everything you must do and set up for a COM addin,
and the details differ depending on what language you use in a newsgroup
post. You cannot use VBA. Look at the link I provided on COM addins at
www.outlookcode.com and pick an example based on your language of choice.
There are also sample COM addins you can download and study and books that
cover COM addins.
--
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
...
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.