View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Howard31 Howard31 is offline
external usenet poster
 
Posts: 100
Default Refedit very serious/urgent problem

It looks like you don't have a reference to the 'RefEdit' library. Try
running the following in a standard module:

Sub GetReferences()
Dim Wb As Workbook, ref, i

Set Wb = ThisWorkbook

For Each ref In Wb.VBProject.References
i = i + 1
Cells(i, 1) = ref.Name
Next
End Sub

If the RefEdit is not among these then you dont have this library.
--
A. Ch. Eirinberg


"avi" wrote:

Hello,

Al Excel files (add-ins or regular files) containing a refedit
component crash with 2 possibles messages: "Permission denied" (when
trying to add the add-in) and "Automation error" when trying to run

It looks as something is certainly wrong in my registry but all the
cleaners I have used so far did not help

Is there a way to know what part of the registry relate to refedit?

Please try helping

Thanks
Avi