Rename Personal Outlook2003 Calendarname.

R

Rob

Hi, in previous versions of Outlook (prior to Outlook2003) it was, in my
opinion, only possible to rename the outlook personal calendarname through
the following code:

Set objOutlook = GetObject(, "outlook.application")
Set objNameSpace = objOutlook.GetNamespace("MAPI")
Set objFolder = objNameSpace.GetDefaultFolder(olFolderCalendar)
objFolder.Name = "NewName"
DoEvents

renamaming the personal calandername through the user interface self was not
possible, in Outlook2003 this codes leads to an error about permissions....
(but they are not changed)

does anyone know a way to rename a personal outlook calendar in an exchange
environment.....? (you can install an outlook2000 client temporary and do the
renaming but this is not ideal)


Thx.

Rob
 
Top