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 » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

New to add-ins



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old January 24th 06, 10:52 AM posted to microsoft.public.outlook.program_addins
Sharad Naik
external usenet poster
 
Posts: 11
Default New to add-ins

Hello,

Can an add-in be built in VB?
Are there any examples of small add-ins in VB?

Thanks

Sharad


Ads
  #2  
Old January 24th 06, 12:08 PM posted to microsoft.public.outlook.program_addins
friedemannkunze via OfficeKB.com
external usenet poster
 
Posts: 7
Default New to add-ins

Hi Sharad,

i've begin with this article from microsoft to develope com addins in vb6:
http://support.microsoft.com/?kbid=238228



Sharad Naik wrote:
Hello,

Can an add-in be built in VB?
Are there any examples of small add-ins in VB?

Thanks

Sharad


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...ddins/200601/1
  #3  
Old January 24th 06, 01:59 PM posted to microsoft.public.outlook.program_addins
Sharad Naik
external usenet poster
 
Posts: 11
Default New to add-ins

Hello,

Many thanks, looks exciting.
I have another question. Do you know any link
to know what all events can be used in add-in, for Outlook 2003?
I want to specifically catch ItemSend event in my add-in, any link
to such examples will be of great help.

Thanks in advance,

Sharad


"friedemannkunze via OfficeKB.com" u15762@uwe wrote in message
news:5ad50a75c597c@uwe...
Hi Sharad,

i've begin with this article from microsoft to develope com addins in vb6:
http://support.microsoft.com/?kbid=238228



Sharad Naik wrote:
Hello,

Can an add-in be built in VB?
Are there any examples of small add-ins in VB?

Thanks

Sharad


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...ddins/200601/1



  #4  
Old January 24th 06, 02:09 PM posted to microsoft.public.outlook.program_addins
Sharad Naik
external usenet poster
 
Posts: 11
Default New to add-ins

Sorry, I mixed up, Item send is not the event
I want to catch, it is a different even than I though.
I want to catch the event, when outlook opens a connection to the remote
smtp server.

Sharad

"Sharad Naik" wrote in message
...
Hello,

Many thanks, looks exciting.
I have another question. Do you know any link
to know what all events can be used in add-in, for Outlook 2003?
I want to specifically catch ItemSend event in my add-in, any link
to such examples will be of great help.

Thanks in advance,

Sharad


"friedemannkunze via OfficeKB.com" u15762@uwe wrote in message
news:5ad50a75c597c@uwe...
Hi Sharad,

i've begin with this article from microsoft to develope com addins in
vb6:
http://support.microsoft.com/?kbid=238228



Sharad Naik wrote:
Hello,

Can an add-in be built in VB?
Are there any examples of small add-ins in VB?

Thanks

Sharad


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...ddins/200601/1





  #5  
Old January 24th 06, 03:35 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default New to add-ins

That event you can't catch.

For an excellent VB6 COM addin template that shows many common Outlook
solutions and workarounds see ItemsCB on the Resources page at
www.microeye.com

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Sharad Naik" wrote in message
...
Sorry, I mixed up, Item send is not the event
I want to catch, it is a different even than I though.
I want to catch the event, when outlook opens a connection to the remote
smtp server.

Sharad


  #6  
Old January 24th 06, 05:14 PM posted to microsoft.public.outlook.program_addins
Sharad Naik
external usenet poster
 
Posts: 11
Default New to add-ins

Hello Ken,

Thanks for the response. The link you gave is excellent.

First thing I want to ask, is there a way to digitally sign add-in created
in VB6?
I created a test add-in for outlook and with security level set to High, it
won't
load add-ins which are not digitally singed and trusted. Until now I only
used macros
which can be so easily signed with a digital certificate.

Second thing: there are many antivirus programs like symantec etc., which "I
THINK"
do catch event when outlook connects to an smtp or pop3 server and proxy for
the
end servers.
(The reason I believe they catch this event, is that if the smtp or pop3
server is un-reachable,
those antivirus programs just don't come in to picture and keep silence.)

I did lot of web search in past few hours about catching this event but in
vein.
I am very qurious how those antivirs folks manage it.

Regards

Sharad


"Ken Slovak - [MVP - Outlook]" wrote in message
...
That event you can't catch.

For an excellent VB6 COM addin template that shows many common Outlook
solutions and workarounds see ItemsCB on the Resources page at
www.microeye.com

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Sharad Naik" wrote in message
...
Sorry, I mixed up, Item send is not the event
I want to catch, it is a different even than I though.
I want to catch the event, when outlook opens a connection to the remote
smtp server.

Sharad




  #7  
Old January 24th 06, 06:46 PM posted to microsoft.public.outlook.program_addins
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default New to add-ins

Most likely they are using a layered TCP/IP provider which can intercept
network traffic on the TCP/IP protocol level; this really has nothing to do
with Outlook.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Sharad Naik" wrote in message
...
Hello Ken,

Thanks for the response. The link you gave is excellent.

First thing I want to ask, is there a way to digitally sign add-in created
in VB6?
I created a test add-in for outlook and with security level set to High,
it won't
load add-ins which are not digitally singed and trusted. Until now I only
used macros
which can be so easily signed with a digital certificate.

Second thing: there are many antivirus programs like symantec etc., which
"I THINK"
do catch event when outlook connects to an smtp or pop3 server and proxy
for the
end servers.
(The reason I believe they catch this event, is that if the smtp or pop3
server is un-reachable,
those antivirus programs just don't come in to picture and keep silence.)

I did lot of web search in past few hours about catching this event but in
vein.
I am very qurious how those antivirs folks manage it.

Regards

Sharad


"Ken Slovak - [MVP - Outlook]" wrote in message
...
That event you can't catch.

For an excellent VB6 COM addin template that shows many common Outlook
solutions and workarounds see ItemsCB on the Resources page at
www.microeye.com

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Sharad Naik" wrote in message
...
Sorry, I mixed up, Item send is not the event
I want to catch, it is a different even than I though.
I want to catch the event, when outlook opens a connection to the remote
smtp server.

Sharad






  #8  
Old January 25th 06, 08:45 AM posted to microsoft.public.outlook.program_addins
Sharad Naik
external usenet poster
 
Posts: 11
Default New to add-ins

Of course you are right. They work for all mail
clients. I just got fulled by the symantec add-in in my outlook, now
I realize it is only for scan on item open.
Thanks

"Dmitry Streblechenko" wrote in message
...
Most likely they are using a layered TCP/IP provider which can intercept
network traffic on the TCP/IP protocol level; this really has nothing to
do with Outlook.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool

"Sharad Naik" wrote in message
...
Hello Ken,

Thanks for the response. The link you gave is excellent.

First thing I want to ask, is there a way to digitally sign add-in
created in VB6?
I created a test add-in for outlook and with security level set to High,
it won't
load add-ins which are not digitally singed and trusted. Until now I only
used macros
which can be so easily signed with a digital certificate.

Second thing: there are many antivirus programs like symantec etc., which
"I THINK"
do catch event when outlook connects to an smtp or pop3 server and proxy
for the
end servers.
(The reason I believe they catch this event, is that if the smtp or pop3
server is un-reachable,
those antivirus programs just don't come in to picture and keep silence.)

I did lot of web search in past few hours about catching this event but
in vein.
I am very qurious how those antivirs folks manage it.

Regards

Sharad


"Ken Slovak - [MVP - Outlook]" wrote in message
...
That event you can't catch.

For an excellent VB6 COM addin template that shows many common Outlook
solutions and workarounds see ItemsCB on the Resources page at
www.microeye.com

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Sharad Naik" wrote in message
...
Sorry, I mixed up, Item send is not the event
I want to catch, it is a different even than I though.
I want to catch the event, when outlook opens a connection to the
remote smtp server.

Sharad







  #9  
Old January 25th 06, 03:31 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default New to add-ins

To add to what Dmitry said, the way some things like Norton operate is to
replace your account settings with a link to localhost where they install
their own SMTP server and trap the outgoing/incoming mail that way. Once
they finish screwing up the message they then forward to the real servers
from the account properties you originally set up.

I have no problems signing my COM addins created using VB 6. The language is
never an issue. If you create a DLL for a COM addin, or an OCX for a
property page you just use your signing certificate on that. I use a Thawte
code signing certificate and can do that as well as sign my MSI or setup.exe
installation packages.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Sharad Naik" wrote in message
...
Hello Ken,

Thanks for the response. The link you gave is excellent.

First thing I want to ask, is there a way to digitally sign add-in created
in VB6?
I created a test add-in for outlook and with security level set to High,
it won't
load add-ins which are not digitally singed and trusted. Until now I only
used macros
which can be so easily signed with a digital certificate.

Second thing: there are many antivirus programs like symantec etc., which
"I THINK"
do catch event when outlook connects to an smtp or pop3 server and proxy
for the
end servers.
(The reason I believe they catch this event, is that if the smtp or pop3
server is un-reachable,
those antivirus programs just don't come in to picture and keep silence.)

I did lot of web search in past few hours about catching this event but in
vein.
I am very qurious how those antivirs folks manage it.

Regards

Sharad


  #10  
Old January 26th 06, 02:04 PM posted to microsoft.public.outlook.program_addins
Sharad Naik
external usenet poster
 
Posts: 11
Default New to add-ins

Thanks Ken, I didn't have tools for signing codes in VB.
On MS site I found CAPICOM tool and with it now I am able to sign my add-in.

"Ken Slovak - [MVP - Outlook]" wrote in message
...
To add to what Dmitry said, the way some things like Norton operate is to
replace your account settings with a link to localhost where they install
their own SMTP server and trap the outgoing/incoming mail that way. Once
they finish screwing up the message they then forward to the real servers
from the account properties you originally set up.

I have no problems signing my COM addins created using VB 6. The language
is never an issue. If you create a DLL for a COM addin, or an OCX for a
property page you just use your signing certificate on that. I use a
Thawte code signing certificate and can do that as well as sign my MSI or
setup.exe installation packages.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"Sharad Naik" wrote in message
...
Hello Ken,

Thanks for the response. The link you gave is excellent.

First thing I want to ask, is there a way to digitally sign add-in
created in VB6?
I created a test add-in for outlook and with security level set to High,
it won't
load add-ins which are not digitally singed and trusted. Until now I only
used macros
which can be so easily signed with a digital certificate.

Second thing: there are many antivirus programs like symantec etc., which
"I THINK"
do catch event when outlook connects to an smtp or pop3 server and proxy
for the
end servers.
(The reason I believe they catch this event, is that if the smtp or pop3
server is un-reachable,
those antivirus programs just don't come in to picture and keep silence.)

I did lot of web search in past few hours about catching this event but
in vein.
I am very qurious how those antivirs folks manage it.

Regards

Sharad




 




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
My Com Add-ins cause outlook process blocked jz Outlook - General Queries 3 February 23rd 06 03:38 PM
why can't you add a page to a form just like you can add a page to the property page donald Outlook - Using Forms 2 January 25th 06 11:50 AM


All times are GMT +1. The time now is 07:06 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.