Publishing form in personal and default contact folder

  • Thread starter Thread starter Jerry
  • Start date Start date
J

Jerry

Hello,


Is it ok to publish to both the olfolderContacts and the persona
library. Microsoft stated it was good, since you will have th
ability to select the form from the "Actions", and also it will work i
all subfolders. But I've seen some comments that having the same for
published in two places is bad and could corrupt the cache.

Or does the corruption only occur if you publish 2 different forms t
different folders?

Thanks in advance



...................... code snippet .....................
Dim objFormDesc As FormDescription

...
Set ofContactlist = olNS.GetDefaultFolder(olFolderContacts)
Set objContactFormItem = _
objApp.CreateItemFromTemplate _
(INSTALLPATH & "ContactXX.oft")

Set objFormDesc = objContactFormItem.FormDescription
objFormDesc.name = CONTACT_RE


objFormDesc.PublishForm olPersonalRegistry
objFormDesc.PublishForm olFolderRegistry, ofContactlis
 
In versions before Outlook 2002 SP3, you do run the risk of forms cache
corruption. As long as your users know the symptoms and how to clear the
cache, this probably won't be too much of a problem.
--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers




Hello,


Is it ok to publish to both the olfolderContacts and the personal
library. Microsoft stated it was good, since you will have the
ability to select the form from the "Actions", and also it will work in
all subfolders. But I've seen some comments that having the same form
published in two places is bad and could corrupt the cache.

Or does the corruption only occur if you publish 2 different forms to
different folders?
 
Just to make sure, the symptoms are of corruptions, the custom for
doesn't come up, and the solution is to clear the cache via the form
manager or remove the "frmcache" file itself?

thanks,
Jerry
 
Just to make sure, the symptoms are of corruptions, the custom for
doesn't come up, and the solution is to clear the cache via the form
manager or remove the "frmcache" file itself?

thanks,
Jerry
 
Just to make sure, the symptoms are of corruptions, the custom form
doesn't come up, and the solution is to clear the cache via the forms
manager or remove the "frmcache" file itself?

thanks,
Jerry
 
Yes. The command to clear the cache deletes the Frmcache.dat file.

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


\
*Yes. The command to clear the cache deletes the Frmcache.dat file.

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


\
*Yes. The command to clear the cache deletes the Frmcache.dat file.

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