Message 1 of 2

Not applicable
12-11-2012
11:44 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I load my .cuix file into Autocad 2013 using VB.Net:
Dim mg As Object Try mg = Application.MenuGroups.Item(cuiName) Catch ex As System.Exception mg = Application.MenuGroups.Load(cuiFile) End Try
File loading sucsessfuly, but my menu is invisible.
I tried do this, but got an error..
Dim i As Integer For i = 0 To mg.Menus.count - 1 mg.Menus.Item(i).Visible = True Next
How to make menu visible?
Solved! Go to Solution.