Hi all,
I have a VB app that adds an Add-in into Excel... However, for some reason when I install the add-in this way, the menu system in the add-in does not show??? Everything else seems to work but the custom menu in Excel??
My code in VB:
--------------------------------
Dim oXL As Object, oAddin As Object
Set oXL = CreateObject("Excel.Application"
oXL.Workbooks.Add
Set oAddin = oXL.AddIns.Add("C:\Program Files\XLPack\" & sEXCELFile, True)
oAddin.Installed = True
oXL.Quit
Set oXL = Nothing
------------------------------------
Any ideas are greatly appreciated!!!
Regards,
MDA
I have a VB app that adds an Add-in into Excel... However, for some reason when I install the add-in this way, the menu system in the add-in does not show??? Everything else seems to work but the custom menu in Excel??
My code in VB:
--------------------------------
Dim oXL As Object, oAddin As Object
Set oXL = CreateObject("Excel.Application"
oXL.Workbooks.Add
Set oAddin = oXL.AddIns.Add("C:\Program Files\XLPack\" & sEXCELFile, True)
oAddin.Installed = True
oXL.Quit
Set oXL = Nothing
------------------------------------
Any ideas are greatly appreciated!!!
Regards,
MDA