Steven Black Consulting -- Resources for Visual FoxPro developers and other object-oriented programming professionals
[intl logo upfront.html]

How To Localize Forms With INTL

Forms (and any other container) can be localized by passing it to the oINTL.Localize() method. Localize forms by passing their object references to the Localize() method of an INTL class object.

*-- Configure oINTL to another language
_SCREEN.oINTL.SetLanguage( "French")
*-- Instantiate a form. If the form calls INTL in
*-- its INIT() method, then the form
*-- appears in French….
DO FORM MyForm Name MyForm

*-- ...or you can localize the form on the fly.
_SCREEN.oINTL.Localize( MyForm)