Ribbon load at startup
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi there,
I have been using the ribbon api to create my custom ribbon. I am
now attempting to load said rribbon at startup by placing the load
command into the initialize componant. It isn't working.
Does any on have any ideas?
Dim ribCntrl As Autodesk.Windows.RibbonControl = Autodesk.Windows.ComponentManager.Ribbon
If ComponentManager.Ribbon Is Nothing Then
Return
End If
For i As Integer = 0 To ribCntrl.Tabs.Count - 1
If ribCntrl.Tabs(i).Id.Equals("My_Rib_ID") Then
Return
End If
Next
'add the tab
Dim ribTab As New RibbonTab()
ribTab.Title = "My New ribbon
ribTab.Id = "My_Rib_ID"
ribCntrl.Tabs.Add(ribTab)
'create and add the panels
addPanel1(ribTab)
addPanel2(ribTab)
addPanel3(ribTab)
addPanel4(ribTab)
addPanel5(ribTab)
addPanel6(ribTab)
addPanel7(ribTab)
'set as active tab
ribTab.IsActive = True
I seem to remember being told it's because the ribbon .dll hasn't yet started
at this point sso it has nothing to use to load it?
Any help would be appreciated.
Ta,
Maritn.