0

I done my opencv code using windows console application vs2008 than i make that as a dll and used it in windows application vb.net. while running i got this error.i didn't get where i did mistake.The error is like this

unhandled exception has occurred in your application if you click continue the application will close immediately.unable to load aranga.dll.The application failed to start because its side by side configuration incorrect.

aranga.dll is my dll having my coding opencv coding part.please help me to resolve this issue. Thanks in advance.

1 Answer 1

1

When you run an application that needs to load DLLs, the system first searches the DLL in the application's directory (i.e. the same folder as your .exe), and then if it can't find it continues to search in the directories defined in the PATH environment variable, and also C:\Windows\system32.

If your DLL is present in any of these locations, the problem might be that your DLL has dependencies that are not being found. I suggest you use Dependency Walker to assist you on this task.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.