• Not Answered

VB script for a new button to pull up a detail pane associated with a motor face plate.

Is there any way to be able to pull just the detail faceplate that is associated with a motor faceplate when addressing the button?

I successfully tried a test to verify the script was correct first by pulling up the Motor faceplate with:

Private Sub CommandButton5_Click()
On Error GoTo ErrorHandler
frszFPExpert "MTR-TEST", 6
Exit Sub
ErrorHandler:
frsHandleError
End Sub

Then changed the FP to DT for the detail faceplate, but was unsuccessful. The error said it couldn't locate the faceplate.:

Private Sub CommandButton5_Click()
On Error GoTo ErrorHandler
frszDTExpert "MTR-TEST", 6
Exit Sub
ErrorHandler:
frsHandleError
End Sub

Am i missing something?

I'm not to familiar with Delta V.

1 Reply

  • Try function >> frsLoadDetail (strNM As String, lngDoMonitor As Long)

    Opens a detail picture for a module.

    strNM - The module for which the detail display will open using the format server.node.module.

    lngDoMonitor - This is the monitor on which to open the detail display.