Hi there,
I would like to hide the Menu and Toolbar, but display the Navigation bar on LO Forms…
I have tried the following macro at Form/Load time but this also hides the Navigation Bar at the bottom of the form (ie First/Next rec, prev/Last, Save, New rec, refresh etc…)
Sub HideAllMenuToolbars
Dim xCurrentController as Object
Dim xLayoutManager as Object
' If Design mode, just exit the routine and display standard menu and toolbars'
xCurrentController = thisComponent.CurrentController
If xCurrentController.isFormDesignMode Then
Exit Sub
End If
xLayoutManager = thisComponent.CurrentController.Frame.LayoutManager
xLayoutManager.visible = false
End Sub
How do I display just the Navigation bar ?
Any suggestions/info appreciated, many thanks.