DLL error when running my little app. ?

  • Thread starter Thread starter Ron
  • Start date Start date
Do you mean the .Net framework? As for visual studio.net 2005, no it
is not on that machine, also I am taking the file I am working with,
the exe, out of the debug bin directory. Is this the one I want to
use?
 
Ron said:
Do you mean the .Net framework?

Yes. You don't need Visual Studio on the machine you're trying to run
on, but you *do* need the framework (of the right version or higher).
 
Hi Ron,

There is a bug in VS2005 (VC8), some dll entry point couldn't be
found....
I dont know if this is exacly the problem of yours...but it worth a try.....

[Solution of workaround]
Open the project of your VC++ dll,

Project | XXX Properties ->
Configuration Properties -> General -> Use of MFC
Change from "Use Standard Windows Libraries" to "Use MFC in a Static
Library"
and then rebuild the project for the first time, this will add some
missing components into your dll.......

finally swith back to "Use Standard Windows Libraries" and rebuild for
the 2nd time.....you ll have the final workable .dll........
Try it......hope this is helpful
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top