OBD-U7 - personal.ucf variables

Going through the task of rolling OBD into my Connect build.

We redefine the location of our user files to a custom location, so why would variables set here be interfering with my build. It's meant that I've had to undefine _USTN_WORKSPACENAME and then lock it so that it doesn't change back to Building_Examples?

Parents Reply
  • I can't see the sense it the hierarchy.  I guess the developers didn't have mining consultancies in mind when they came up with the plan.

    If I can't find a better solution i'll the below code to an OnDesignFileClosed macro.  It's a bit of a flamethrower approach, but most my user tickets can be solved by clearing the user config file.  I'm re-building all our OB connect builds now, getting FMG connect up and running was a marathon.

    Dim str_file As String
    str_file = ActiveWorkspace.ExpandConfigurationVariable("$(_USTN_HOMEROOT)") & "prefs\Personal.ucf"
    Kill str_file

Children