Rename sent items folder

  • Thread starter Thread starter Peter A
  • Start date Start date
P

Peter A

I was trying to switch off the automatical saving of sent
items.
I did this in an Excel VBA project, using the command:
..SaveSentMessageFolder = False
As a consequence my Sent Items folder was renamed to "0".
Can someone help me to reset the name of this folder
to "Sent Items" again?
Fortunately all sent messenges are still there...
 
..SaveSentMessageFolder = "Sent Items"

Re-run your code but change the line above.

The default property of a MAPIFolder is .Name. Your code changed the default
property so changed the folder name. I'm not sure what you were trying to
do, but be careful when accessing various objects about what their default
properties are.
 
-----Original Message-----
..SaveSentMessageFolder = "Sent Items"

Re-run your code but change the line above.

The default property of a MAPIFolder is .Name. Your code changed the default
property so changed the folder name. I'm not sure what you were trying to
do, but be careful when accessing various objects about what their default
properties are.

Thanks for your solution. It worked.
I tried to set the "save copies of messages in Sent items
folder" off. But I cannot find the command to do it.
 
Back
Top