View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
SCA2003 READ THIS FIRST SCA2003 READ THIS FIRST is offline
external usenet poster
 
Posts: 1
Default AddInError Excel97 -- ExcelXP

Sorry, there is some AddIn code in the vba stuff. Basically when i wrote this thing in 97 I tried to support 95. Becasue 95 didn't have custom views, I needed the folowing code to run in 95:

For Each ad In Application.AddIns
AIname = ad.Name
If AIname = "VIEWS.XLA" Then AddIns("View Manager").Installed = True
If AIname = "REPORTS.XLA" Then AddIns("Report Manager").Installed = True
RW = RW + 1
Next

I still can't see what is causing my problem on startup. Could it be the custom views?