I have a question. How to make activeX dll in Delphi XE and add it to Excel VBA project like a reference.
I made the usual activeX library (file -> new -> other -> activeX -> activeX Library). Wrote several functions and procedures inside it. And build. So I have "SomeActiveXLibrary.dll"
Now I'd like to use my dll in vba project in excel. In vba IDE I push tools->references->browse->"SomeActiveXLibrary.dll" and see "can't add a reference to the specified file".
What am I doing wrong?
RegSvr32or Delphi'sTRegSvr. You have a DLL, which needs to have individual functions registered as externals in your VBA code. – Ken White Sep 20 '12 at 20:26