Autosaving a Contact when replying

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

Guest

How do I configure Outlook to autosave the name in the reply with it's email address. Using Outlook 2003 and the learning curve is killing me..

JD
 
I would like to know if anyone can get that code to work. I am using Windows 2000 professional and the code keeps giving me errors.

I would like to know if someone else is using the code successfully in a Windows 2000 pofessional operating system using Outlook 2002

Russ, you should know that I have been working with Sue Mosher on the code and do not know if she is working on the bug or not. I keep getting an error saying Cannot open express service. Has something to do with exprv.dll. Tried everything she suggested and was still unable to get Outlook to add recepients to the contacts folder automatically

----- Russ Valentine [MVP-Outlook] wrote: ----

No such feature in any current version of Outlook. That's an Outlook Expres
feature
You can create one with code if you want
http://www.outlookcode.com/d/code/autoaddrecip.ht

--
Russ Valentin
[MVP-Outlook
JD McCarty said:
How do I configure Outlook to autosave the name in the reply with it'
email address. Using Outlook 2003 and the learning curve is killing me..
 
I've never encountered anyone so far who could not get this code to work.
--
Russ Valentine
[MVP-Outlook]
Roy said:
I would like to know if anyone can get that code to work. I am using
Windows 2000 professional and the code keeps giving me errors.
I would like to know if someone else is using the code successfully in a
Windows 2000 pofessional operating system using Outlook 2002.
Russ, you should know that I have been working with Sue Mosher on the code
and do not know if she is working on the bug or not. I keep getting an
error saying Cannot open express service. Has something to do with
exprv.dll. Tried everything she suggested and was still unable to get
Outlook to add recepients to the contacts folder automatically.
----- Russ Valentine [MVP-Outlook] wrote: -----

No such feature in any current version of Outlook. That's an Outlook Express
feature.
You can create one with code if you want:
http://www.outlookcode.com/d/code/autoaddrecip.htm

--
Russ Valentine
[MVP-Outlook]
JD McCarty said:
How do I configure Outlook to autosave the name in the reply with
it's
email address. Using Outlook 2003 and the learning curve is killing me...
 
Maybe you can help me debug my problem.

When I reply to a message I got the following error.

Run-time error '-1214234619(b7a04005)'
Failed to start the Expression Service. The Expression Service might no
be installed. This problem may be resolved by using Detect and Repair o
the Help menu or re-running Office XP setup.

I rand Detect and Repair, and the system told me it installed it successfully. Replied to the message again and got the same error

Tried to debug the problem. I inserted a breakpoint in AddRecipToContacts method.
strAddress = objSRecip.Addres
For i = 1 To
strFind = "[Email" & i & "Address] = " &
AddQuote(strAddress
Set objContact = colContacts.Find(strFind

At the "Set objContact = colContacts.Find(strFind)" is where the routing gets hung up and displays the runtime error.

Can you offer me any advice????????


----- Russ Valentine [MVP-Outlook] wrote: ----

I've never encountered anyone so far who could not get this code to work
--
Russ Valentin
[MVP-Outlook
Roy said:
I would like to know if anyone can get that code to work. I am usin
Windows 2000 professional and the code keeps giving me errorsand do not know if she is working on the bug or not. I keep getting a
error saying Cannot open express service. Has something to do wit
exprv.dll. Tried everything she suggested and was still unable to ge
Outlook to add recepients to the contacts folder automatically
----- Russ Valentine [MVP-Outlook] wrote: ----
No such feature in any current version of Outlook. That's an Outloo
Expres
feature
You can create one with code if you want
http://www.outlookcode.com/d/code/autoaddrecip.ht
Russ Valentin
[MVP-Outlook
JD McCarty said:
How do I configure Outlook to autosave the name in the reply wit
it'
email address. Using Outlook 2003 and the learning curve is killin me..
 
Sorry, I can't.
I don't know a thing about debugging code. If Sue can't do it. No one can.
--
Russ Valentine
[MVP-Outlook]
Roy said:
Maybe you can help me debug my problem.

When I reply to a message I got the following error.

Run-time error '-1214234619(b7a04005)': might not
be installed. This problem may be resolved by using Detect and Repair on
the Help menu or re-running Office XP setup.

I rand Detect and Repair, and the system told me it installed it
successfully. Replied to the message again and got the same error.
Tried to debug the problem. I inserted a breakpoint in AddRecipToContacts method.
strAddress = objSRecip.Address
For i = 1 To 3
strFind = "[Email" & i & "Address] = " & _
AddQuote(strAddress)
Set objContact = colContacts.Find(strFind)

At the "Set objContact = colContacts.Find(strFind)" is where the
routing gets hung up and displays the runtime error.
Can you offer me any advice????????



----- Russ Valentine [MVP-Outlook] wrote: -----

I've never encountered anyone so far who could not get this code to work.
--
Russ Valentine
[MVP-Outlook]
Roy said:
I would like to know if anyone can get that code to work. I am
using
Windows 2000 professional and the code keeps giving me errors. successfully in a
Windows 2000 pofessional operating system using Outlook 2002. the code
and do not know if she is working on the bug or not. I keep getting an
error saying Cannot open express service. Has something to do with
exprv.dll. Tried everything she suggested and was still unable to get
Outlook to add recepients to the contacts folder automatically.
----- Russ Valentine [MVP-Outlook] wrote: -----
No such feature in any current version of Outlook. That's an
Outlook
Express
feature.
You can create one with code if you want:
http://www.outlookcode.com/d/code/autoaddrecip.htm
Russ Valentine
[MVP-Outlook]
JD McCarty said:
How do I configure Outlook to autosave the name in the reply with
it's
email address. Using Outlook 2003 and the learning curve is
killing
 
Back
Top