Multiple languages form

  • Thread starter Thread starter Jacob Kronne
  • Start date Start date
J

Jacob Kronne

Hi, All
I'm developping a Appointment based form.
The form should include multiple language strings
and represent them on form according the Outlook language
(Application.LanguageSettings.LanguageID(msoLanguageIDUI))
But VbScript Editor don't save multiple language strings.
It save only english strings and PC default language strings.
How can I save multiple language strings?
 
Unlike VB where you can set up different language strings in a resource file
and use LoadResString to get a string based on the local language settings
you have to completely roll your own in an Outlook form using VBScript. That
means setting up different strings for each language you plan to support (or
string arrays where you get the desired string using the language as an
index into the array) and display all strings using that language specific
set of strings. That applies to control captions, dialogs and anything else
that uses a string.
 
Back
Top