Default opening mode for pages

Build 1501 on 14/Nov/2017  This topic last edited on: 17/Mar/2016, at 16:48

You can choose the default opening mode for pages.

The default is to open pages in a multi-page view.

This is a personal preference for each user. Find the preference on the Opening sub-tab of the Extra tab of the Fred Preferences dialog box:

pagesopening1

Should you want that the default opening should be in separate tabs, and you don't want that every user has to tick the Double-click Opens a New Page in Separate Tab, create an override sub OnPageDoubleClick in the CustomFredAddIn, and replace in it AddDesigner with OpenDesigner.

 <ShellCommand(CanExecute:="HasSelectedObject")> _

Public Sub OnPageDoubleClick()

  'If shift is pressed open object else open designer:

  If AddInUtils.IsShiftKeyPressed() Then

     EditObject()

  Else

     AddDesigner()

  End If

End Sub