Exporting add-in containing dll functions to other computers

  • Thread starter Thread starter yanne81
  • Start date Start date
Y

yanne81

Hello everybody,

I developed an add-in for excel 2000 containing wrapper functions for a
dll I made as well. Now I'm trying to export this add-in to another
computer by copying the add-in to the other computers add-in folder(ie.
C:\Documents and Settings\"YourUserName"\Application
Data\Microsoft\AddIns) and placing the dll I developed to the windows'
system32 folder. Even though I do this something goes wrong and I get
only an error report #Value! for every function I try to to use. The
add-in works just fine on the pc I developed this add-in on.

If you have any idea please let me know. Thanks!

-Janne Ervasti
 
Did you have the user use Tools|Addins and actually enable that addin?

And I don't know anything about .dll's, but don't you have to register that dll
with windows.

Kind of...

Windows start button|Run
regsvr32 %windir%\system32\yourdll.dll
 
Back
Top