How to automatically put people I reply to in my address book?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm using Outlook 2000 (not that Only Internet mail version) and it no have
the auto put people in my address book feature, so what should I do?
 
No current versions of Outlook have the ability to add recipients
automatically to your Contacts Folder. Only the long abandoned IMO mode of
Outlook 98/2000 did that. To automatically add the email address of people
you respond to your Contacts Folder requires code:
http://www.outlookcode.com/d/code/autoaddrecip.htm
 
I was go thru the link that you given but I still not understand how to add
in the cades, shall I copy the code sample from the web or I have to create
myself? pls. advice. Thanks!

Russ Valentine said:
No current versions of Outlook have the ability to add recipients
automatically to your Contacts Folder. Only the long abandoned IMO mode of
Outlook 98/2000 did that. To automatically add the email address of people
you respond to your Contacts Folder requires code:
http://www.outlookcode.com/d/code/autoaddrecip.htm


--
Russ Valentine
[MVP-Outlook]
Hau said:
I'm using Outlook 2000 (not that Only Internet mail version) and it no
have
the auto put people in my address book feature, so what should I do?
 
Copy the code sample into the built-in ThisOutlookSession module in Outlook
VBA. If you're new to Outlook VBA macros, these web pages should help you
get started:

http://www.winnetmag.com/Articles/Index.cfm?ArticleID=21522&pg=1
http://www.outlookcode.com/d/vb.htm


--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



Hau said:
I was go thru the link that you given but I still not understand how to add
in the cades, shall I copy the code sample from the web or I have to
create
myself? pls. advice. Thanks!

Russ Valentine said:
No current versions of Outlook have the ability to add recipients
automatically to your Contacts Folder. Only the long abandoned IMO mode
of
Outlook 98/2000 did that. To automatically add the email address of
people
you respond to your Contacts Folder requires code:
http://www.outlookcode.com/d/code/autoaddrecip.htm


--
Russ Valentine
[MVP-Outlook]
Hau said:
I'm using Outlook 2000 (not that Only Internet mail version) and it no
have
the auto put people in my address book feature, so what should I do?
 
The instructions are all there. You can often cut and paste code samples.
--
Russ Valentine
[MVP-Outlook]
Hau said:
I was go thru the link that you given but I still not understand how to add
in the cades, shall I copy the code sample from the web or I have to
create
myself? pls. advice. Thanks!

Russ Valentine said:
No current versions of Outlook have the ability to add recipients
automatically to your Contacts Folder. Only the long abandoned IMO mode
of
Outlook 98/2000 did that. To automatically add the email address of
people
you respond to your Contacts Folder requires code:
http://www.outlookcode.com/d/code/autoaddrecip.htm


--
Russ Valentine
[MVP-Outlook]
Hau said:
I'm using Outlook 2000 (not that Only Internet mail version) and it no
have
the auto put people in my address book feature, so what should I do?
 
I was follow the instruction to copy & paste on my Outlook VBA but it seem
doesn't work at all, below is the steps that i did:

1. copy the the codes as following to ThisOutlookSession session module in
Outlook VBA.

"Private Sub Application_ItemSend(ByVal Item As Object, _
Cancel As Boolean)
Item.Categories = ""
If Item.Class = olMail Then
Call AddRecipToContacts(Item)
End If
End Sub"

2. copy the other 2 procedures to Class Modules (class1) and save. Am I did
any mistake on coopy & paste? pls. advice. thanks


Russ Valentine said:
The instructions are all there. You can often cut and paste code samples.
--
Russ Valentine
[MVP-Outlook]
Hau said:
I was go thru the link that you given but I still not understand how to add
in the cades, shall I copy the code sample from the web or I have to
create
myself? pls. advice. Thanks!

Russ Valentine said:
No current versions of Outlook have the ability to add recipients
automatically to your Contacts Folder. Only the long abandoned IMO mode
of
Outlook 98/2000 did that. To automatically add the email address of
people
you respond to your Contacts Folder requires code:
http://www.outlookcode.com/d/code/autoaddrecip.htm


--
Russ Valentine
[MVP-Outlook]
I'm using Outlook 2000 (not that Only Internet mail version) and it no
have
the auto put people in my address book feature, so what should I do?
 
You need to ask in a programming group.
--
Russ Valentine
[MVP-Outlook]
Hau said:
I was follow the instruction to copy & paste on my Outlook VBA but it seem
doesn't work at all, below is the steps that i did:

1. copy the the codes as following to ThisOutlookSession session module in
Outlook VBA.

"Private Sub Application_ItemSend(ByVal Item As Object, _
Cancel As Boolean)
Item.Categories = ""
If Item.Class = olMail Then
Call AddRecipToContacts(Item)
End If
End Sub"

2. copy the other 2 procedures to Class Modules (class1) and save. Am I
did
any mistake on coopy & paste? pls. advice. thanks


Russ Valentine said:
The instructions are all there. You can often cut and paste code samples.
--
Russ Valentine
[MVP-Outlook]
Hau said:
I was go thru the link that you given but I still not understand how to
add
in the cades, shall I copy the code sample from the web or I have to
create
myself? pls. advice. Thanks!

:

No current versions of Outlook have the ability to add recipients
automatically to your Contacts Folder. Only the long abandoned IMO
mode
of
Outlook 98/2000 did that. To automatically add the email address of
people
you respond to your Contacts Folder requires code:
http://www.outlookcode.com/d/code/autoaddrecip.htm


--
Russ Valentine
[MVP-Outlook]
I'm using Outlook 2000 (not that Only Internet mail version) and it
no
have
the auto put people in my address book feature, so what should I do?
 
Did you check your macro security -- Tools | Macro | Security?

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



Hau said:
I was follow the instruction to copy & paste on my Outlook VBA but it seem
doesn't work at all, below is the steps that i did:

1. copy the the codes as following to ThisOutlookSession session module in
Outlook VBA.

"Private Sub Application_ItemSend(ByVal Item As Object, _
Cancel As Boolean)
Item.Categories = ""
If Item.Class = olMail Then
Call AddRecipToContacts(Item)
End If
End Sub"

2. copy the other 2 procedures to Class Modules (class1) and save. Am I
did
any mistake on coopy & paste? pls. advice. thanks


Russ Valentine said:
The instructions are all there. You can often cut and paste code samples.
--
Russ Valentine
[MVP-Outlook]
Hau said:
I was go thru the link that you given but I still not understand how to
add
in the cades, shall I copy the code sample from the web or I have to
create
myself? pls. advice. Thanks!

:

No current versions of Outlook have the ability to add recipients
automatically to your Contacts Folder. Only the long abandoned IMO
mode
of
Outlook 98/2000 did that. To automatically add the email address of
people
you respond to your Contacts Folder requires code:
http://www.outlookcode.com/d/code/autoaddrecip.htm


--
Russ Valentine
[MVP-Outlook]
I'm using Outlook 2000 (not that Only Internet mail version) and it
no
have
the auto put people in my address book feature, so what should I do?
 
Back
Top