Anyone know what the _USTN_USER_CONFIGURATION_LABEL variable does?

its in the ConfigurationSetUp.cfg file. I cant find anything about this variable online, there is no detailed description listed for it in the Configuration Variables dialog. When I set it, I cant see anything within the product that changed.

i was thinking it was similar to _USTN_WorkspaceLabel or something and in the dropdown where is separates the delivered config with the custom config, it says *Custom Configuration in the Workspaces dropdown. 

but that value didn't change. so not sure what its for.

Parents Reply
  • Oh, i got it work. You have to define both _USTN_USER_CONFIGURATION and _USTN_USER_CONFIGURATION_LABEL. When you do that you don't see the * Example entry and will see your custom label:

    [General]
    _USTN_DISPLAYALLCFGVARS     = 1
    _USTN_USER_CONFIGURATION_LABEL=Kevin's Configuration
    _USTN_USER_CONFIGURATION=C:/CADDLib/Connect-Test/
    

    Produces:

    If however you set _USTN_CUSTOM_CONFIGURATION instead, you'll get the * Example entries and your custom configuration location but the Label won't set.

    [General]
    _USTN_DISPLAYALLCFGVARS     = 1
    _USTN_USER_CONFIGURATION_LABEL=Kevin's Configuration
    _USTN_CUSTOM_CONFIGURATION=C:/CADDLib/Connect-Test/
    

    Produces:

    Kevin

     

    Answer Verified By: John Drsek 

Children