I am working on a Delphi7 project which uses COM components to interact outside delphi code. All these components are developed in C#. Involked .tlb and .dll files for all COM components. Registered them in registry as well. Other components got registered and are usable in delphi code except one.
When accessing function of that particular COM Object, it is raising error -
Project ABC.exe raised exception class EOleSysError with message 'The system cannot find the file specified'. Process stopped. Use Step or Run to continue
I am working on understanding COM part in delphi and checked below areas :
- Import type library - dll is added and installed there
- Registry - Registry Entry exists for same
I used to rebuild the dll, place that dll with delphi code folder, and making corresponding registry entry to use COM component in delphi. Others are working fine using same procedure but not this one.
What else I should check to resolve this issue?