For Outlook 2000 the best option would be to run a macro to rename the
folder. For earlier than Outlook 2000 the only option would be to run
code similar to the macro in form code.
For Outlook 2000 (or later):
Open Outlook VBA by pressing Alt+F11. Select Insert, Module to add a
code module. Copy and paste the following in the code module:
Sub RenameSentItems()
Dim oFolder As Outlook.MAPIFolder
Set oFolder = Application.GetNameSpace("MAPI"). _
GetDefaultFolder(olFolderSentItems)
oFolder.Name = "Sent Items"
Set oFolder = Nothing
End Sub
Place the cursor in the procedure and press F5 to run it. That should
rename the folder.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Lead Author, Professional Outlook 2000 Programming, Wrox Press
Lead Author, Beginning VB 6 Application Development, Wrox Press
Attachment Options
http://www.slovaktech.com/attachmentoptions.htm
Extended Reminders
http://www.slovaktech.com/extendedreminders.htm