.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Show/hide toolbars

3 REPLIES 3
Reply
Message 1 of 4
fsztuczny
614 Views, 3 Replies

Show/hide toolbars

I loaded a partial customization file by CUI dialog. I would like to programmatically hide / show the menus and toolbars, so when you restart AutoCAD to be permanently hidden or visible. Can anyone hint how to do it?

3 REPLIES 3
Message 2 of 4
DesignProQuig
in reply to: fsztuczny

Hi there,

this code works, but I have ran into problems when Windows 7 UAC is set to high:

If any one has a better way of doing this then I would be greatful also:

 

 

 

 

Imports Autodesk.AutoCAD.Runtime
Imports Autodesk.AutoCAD.ApplicationServices
Imports Autodesk.AutoCAD.Interop
Imports System.Environment

<Assembly: CommandClass(GetType(ToolbarCmds))>

Public Class ToolbarCmds
    <CommandMethod("MyMenusCuix")> _
    Public Sub LoadToolbars()


        Dim cuiname As String = "MyMenus"
        Dim cuifile As String = "C:\MyMenus.cuix"
        Dim mg As AcadMenuGroup
        Try
            'Attempt to access our menugroup
            mg = Application.MenuGroups.Item(cuiname)
        Catch ex As System.Exception
            'Failure simply means we need to load the CUI first
            Application.MenuGroups.Load(cuifile)
            mg = Application.MenuGroups.Item(cuiname)
            'Cycle through the toobars, setting them to visible
            Dim i As Integer
            For i = 0 To mg.Toolbars.Count - 1
                mg.Toolbars.Item(i).Visible = True
            Next
        End Try
    End Sub
End Class

 

 

Regards,

 

Martin.

http://www.designprosoftware.co.uk/
Message 3 of 4
Alfred.NESWADBA
in reply to: fsztuczny

Hi,

 

...create/save two workspaces, one having your partial menues visible and the other workspace having them invisible ...?

 

- alfred -

------------------------------------------------------------------------------------
Alfred NESWADBA
Ingenieur Studio HOLLAUS ... www.hollaus.at ... blog.hollaus.at ... CDay 2024
------------------------------------------------------------------------------------
(not an Autodesk consultant)
Message 4 of 4
fsztuczny
in reply to: Alfred.NESWADBA

Thank you.

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost