/ 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

#6747
Support 1
Participant

    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