/ Forums / Advansys Formativ / Creating Solutions with Formativ / How to determine the language setting of the GroupWise client

  • Creator
    Topic
  • #3973
    rovabu
    Participant

      What’s the best way to determine which language interface the GroupWise client uses? Querying the “Interface Language” section in the registry or is there an API call? I only found a Tokenization API call to set the language, not to query it.

    • Author
      Replies
    • #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

      Viewing 1 replies (of 1 total)
      • You must be logged in to reply to this topic.