Detail Display Heading/Titlebar

I have a custom Detail display that was built from a DDC faceplate FB.  In run envirionment the heading in the title bar shows up as Faceplate FB. I want that to read Detail, like the rest of my Detail Displays, but I can not figure out where the heading is decided when it's opened. Haven't found anything in scripts or properties.

Thanks

1 Reply

  • Search for frszDvsysIAfbInit and then change this to frszDvsysDetailInit, this should be int he CFixPicture_LoadedTagGroup event.

    You should also check that you have the following (which I doubt and add this if you don't have):

    Private Sub CFixPicture_SelectionChanged()
      On Error GoTo ErrorHandler
      frszpicCurLink Me.ContainedSelections, ps_CurrentLink
      Exit Sub
    ErrorHandler:
      frsHandleError
    End Sub

    The mouse down event logic should also probably change to be consistent with Detail:

    Private Sub CFixPicture_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Double, ByVal Y As Double)
      On Error GoTo ErrorHandler
        If Button = vbKeyRButton Then
          'Track #36546 - Removed IEPOP1 on : 12/3/01
          frszCreateAnEPMMenu Me
        End If
      Exit Sub
    ErrorHandler:
        frsHandleError
    End Sub