I have created a class library in C#, called SimpleCalc on Visual Studio that I want to use in Access VBA.
Following this article I was able to get it working on development laptop.
However, I am now trying to get it working on an end user's computer but I am having trouble figuring it out.
I took the dll file, that was generated by visual studio when I built the project, and copied it over to the user's computer and then I began trying to register it.
To register I need to use the command regsvr32 but that gave me an error saying that DLL was loaded but DllRegister Server entry point was not found.
So I started using Regasm.exe to register the dll.
That was able to register the dll, but when I tried to add reference in the VBA editor on Access I got an error message that says "can't add a reference to the specified file".
Is there anything I overlooked or what should I do?