This Qt application was complied by VS 2010 for the end users, but the executing application doesn’t find Qt’s dll. In the folder, there are QtGui4.dll and QtCore4.dll How can I solve this problem?

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Welcome to the Dll Hell!
Everytime you use Qt for deployment you have to be sure that
1) The libraries against which you are compiling are the same version and the same compiler
2) There are no conflicts with other libraries in system path
3) If you compile Debug you must use *d.dll version of the libraries
Be sure for example that if your program is compiled with VC9 then also you dll are compiled with VC9.
You can understand which libraries you are linking against with a very useful program called Dependency Walker. http://www.dependencywalker.com/