• Not Answered

VBA code to open a Detail faceplate in Operate

I'm trying to open a Detail faceplate directly on a display but I can't figure the proper script.  I tried using frsLoadDetail but I can't seem to make it work.

Any help would be appreciated.

2 Replies

  • Here is some code that works on a system with a PCSD library loaded. Since it is an frsz call it should be part of core DeltaV Operate functions.

    On Error GoTo ErrorHandler
    frszDynamoLoadDET "DVSYS.modulename", Me
    Exit Sub
    ErrorHandler:
    frsHandleError


    This one requires a datasource so a DVSYS.modulename. frsLoadDetail just calls for a name. Both need a monitor to open on with Me being the current monitor.
  • In reply to Scott Thompson:

    Cool. Thanks Scott!