开发者

vc++ debug : the application failed to start because ACE.dll was not found

开发者 https://www.devze.com 2023-01-14 08:40 出处:网络
I\'ve used ACE.lib in my program and it compiled properly. But when I debug I get this error. The ACE.dll is in the same folder as 开发者_如何转开发the lib and I\'ve also tried adding it to the projec

I've used ACE.lib in my program and it compiled properly. But when I debug I get this error. The ACE.dll is in the same folder as 开发者_如何转开发the lib and I've also tried adding it to the project and PATH. Nothing works

Any help is appreciated


Verify that it really is in your path by:

  1. Press START->Run
  2. Enter "cmd" and press ENTER
  3. Enter "echo %path" and press ENTER
  4. Verify that the directory is there.

Your project directory is your running directory (unless you changed it in the project settings). Check what happens if you put the DLL there.

Lastly, try running your project executable directly (double-click on it in Windows Explorer, for example) while the ACE.dll is in the path or in your running directory.

0

精彩评论

暂无评论...
验证码 换一张
取 消