mooSetLang("[EN|FR]")


Sets the language that any internal messages that are generated by the moo library or menu items used by the graphical user interface.  Default is EN.


Syntax


               mooSetLang("[EN|FR]")


Return Value


               BOOLEAN


Example


Public Sub mooSetLang()


If Not oregistered Then:   boo = regQ:


'Switch the text in the graphical forms to French

o.mooSetLang ("FR")

o.mooShowConnFrm


'Switch back to English

o.mooSetLang ("EN")

o.mooShowConnFrm


End Sub