use functions from a prepared dll file

mokhayer

New member
Local time
Yesterday, 19:29
Joined
Jun 12, 2012
Messages
2
I want to use functions prepared in APL_Std.dll in my access file. I opened VBA windows and select: Tools then References, browsed that file address. The message was "can't add a reference to the specified file". When I want to register APL_Std.dll as Run: REGSVR32.exe "APL_Std.dll" , the message is:"The module "c:\br_soft\system 32\APL_Std.dll" was loaded but the entry-point DllrRegisterServer was not found. How can I solve this problem?
 
Did you write the APL_Std.dll? What language was it written in? Not all DLL's can be registered using regsvr32, that is only for native win32 DLL's. If it is a DLL using the .NET framework you need to use regasm.exe instead.
 

Users who are viewing this thread

Back
Top Bottom