Message 1 of 7
Unable to get Ribbon Tab Added by an Add-In

Not applicable
07-25-2009
07:11 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have added a ribbon tab in one of my Add-Ins with a panel and a button on it and is working good. When I tried to add a panel to the above mentioned tab it gives an error at the point of accessing the existing tab. Is there any solution to load the first add-in before loading the second one?
The code used to add the first tab is
{code}
'Get the tabs associated with ZeroDoc ribbon & add new tab IP Tooling
Dim ribbonTabs As RibbonTabs = zeroDocRibbon.RibbonTabs
Dim toolingRibbonTab As RibbonTab = ribbonTabs.Add("IP Tooling ", "id_Tab_IPTooling", m_addInCLSIDSting, , , )
{code}
and the code on second Addin to access the existing tab is
{code}
strError = "unable to locate zero doc tooling tab"
Dim zeroDocTab As RibbonTab = ZerodocRibbon.RibbonTabs("id_Tab_IPTooling")
{code}
need help to overcome this issue
Thanks & Regards,
Saseendran Kombath
Interplast Co. Ltd.,
UAE
The code used to add the first tab is
{code}
'Get the tabs associated with ZeroDoc ribbon & add new tab IP Tooling
Dim ribbonTabs As RibbonTabs = zeroDocRibbon.RibbonTabs
Dim toolingRibbonTab As RibbonTab = ribbonTabs.Add("IP Tooling ", "id_Tab_IPTooling", m_addInCLSIDSting, , , )
{code}
and the code on second Addin to access the existing tab is
{code}
strError = "unable to locate zero doc tooling tab"
Dim zeroDocTab As RibbonTab = ZerodocRibbon.RibbonTabs("id_Tab_IPTooling")
{code}
need help to overcome this issue
Thanks & Regards,
Saseendran Kombath
Interplast Co. Ltd.,
UAE