Liebe Liste,
habe das Ganze jetzt als Feature betrachtet und zur Lösung folgendes
Makro benutzt:
SUB Symbolleisten_ausblenden_ausser_Menubar
        DIM oFrame AS OBJECT
        DIM oLayout AS OBJECT
        DIM aListe()
        DIM i AS INTEGER
        DIM s AS STRING
        oFrame = StarDesktop.getCurrentFrame()
        oLayout = oFrame.LayoutManager
        REM Sichtbar schalten, da sonst unterschiedliche Leisten nicht
berücksichtigt werden
        oLayout.visible = true
        aListe = oLayout.getElements()
        FOR i = 0 to uBound(aListe)
                s = aListe(i).ResourceUrl
                IF inStr(s,"menubar") > 0 THEN
                ELSE
                        oLayout.hideElement(s)                  
                END IF
        NEXT    
END SUB
Damit habe ich immer die Menuebar sichtbar. Manchmal passierte es
nämlich prompt, dass auch die Symbolleiste des Base-Hauptfensters
verschwand. So bin ich auf der sicheren Seite.
Gruß
Robert
-- 
Informationen zum Abmelden: E-Mail an users+help@de.libreoffice.org
Tips zu Listenmails: http://wiki.documentfoundation.org/Netiquette/de
Listenarchiv: http://listarchives.libreoffice.org/de/users/
Alle E-Mails an diese Liste werden unlöschbar öffentlich archiviert
Context
   
 
  Privacy Policy |
  
Impressum (Legal Info) |
  
Copyright information: Unless otherwise specified, all text and images
  on this website are licensed under the
  
Creative Commons Attribution-Share Alike 3.0 License.
  This does not include the source code of LibreOffice, which is
  licensed under the Mozilla Public License (
MPLv2).
  "LibreOffice" and "The Document Foundation" are
  registered trademarks of their corresponding registered owners or are
  in actual use as trademarks in one or more countries. Their respective
  logos and icons are also subject to international copyright laws. Use
  thereof is explained in our 
trademark policy.