/ Forums / Advansys Formativ / Creating Solutions with Formativ / How to determine the language setting of the GroupWise client / Reply To: How to determine the language setting of the GroupWise client
October 29, 2003 at 4:55 pm
#6747
Unfortunately there is no API call or Token to read the “Interface Language”. You can read the setting from the Windows Registry. The following source code example displays its value in a message dialog:
Dim oRegistry Set oRegistry = Utilities.Registry oRegistry.RootKey = fHKEY_CURRENT_USER if oRegistry.OpenKey("SoftwareNovellGroupWiseInterface Language", FALSE) then ' This key value has no name. msgbox oRegistry.ReadString("") oRegistry.CloseKey end if set oRegistry = nothing
Advansys Support