I'm launching excel spreadsheets from a main menu in Access. These spreadsheets are key to data that gets entered into the database. I thought this would be easier for the user but I've discovered that some 3rd party addins don't get installed using this method.
After excel has launched i am able to manually add them in but this would be painful everyday. How do I ensure addins load correctly?
Thanks
Diane
____________________________
Dim oApp As Object
Set oApp = CreateObject("Excel.Application")
oApp.Visible = True
oApp.Application.Workbooks.Open ("G:\HOEP.xls")
On Error Resume Next
oApp.UserControl = True
After excel has launched i am able to manually add them in but this would be painful everyday. How do I ensure addins load correctly?
Thanks
Diane
____________________________
Dim oApp As Object
Set oApp = CreateObject("Excel.Application")
oApp.Visible = True
oApp.Application.Workbooks.Open ("G:\HOEP.xls")
On Error Resume Next
oApp.UserControl = True