Publish forms in different languages

B

Bertin Colpron

I designed two sets of forms (one in English, one in French) and I
want to publish them in the organizational form library.

I already have created English and French folders under
EFORMS_REGISTRY using the Exchange System Manager. I have also
successfully published the English forms using an English version of
Outlook, and the French forms using a French version of outlook. So
far, everything is fine.

However, I would like to be able to publish both sets of forms from
the same version of Outlook (i.e. publish both English and French
forms using English Outlook). Is this possible ?

Here's an oversimplified version of the script I use to publish the
forms:

Set OlApp = CreateObject("Outlook.Application")

Set Item = OlApp.CreateItem( olMailItem )
Set Form = Item.FormDescription

Form.Name = "MyForm"
Form.DisplayName = "MyForm"

Form.PublishForm 4 ' olOrganizationRegistry

Thanks,

Bertin
 
Top