ByzantianX
Programmer
- Dec 18, 2000
- 103
I made a simple activeX dll (in Visual Basic), wanting to use some functions from it in different environments (Visual Basic, Delphi, Access 2.0). After a registration of that dll, the only way it seems to work is when referencing that particular dll (on project-references) from another visual basic project. Delphi used to send message "The procedure entry point 'name of the function' can not be located in 'name of the dll'..." and access 2.0 just didn't send any messages, it behaved like the function from dll send null string or 0 integer (depends on function I used to call from dll). What I did in activeX dll was that I made a module, put several public functions, made dll and after that I registered that dll. Could anyone help me with some idea what could be wrong?