Well, what can I say? "Unable to find entry point" means exactly that - that it can't find that particular function in the DLL file. Since Qt ships with pretty much every function available in the DLL, the only explanation is that the system is trying to use a custom-compiled QtCore DLL which doesn't have the function that the program needs. If the function wasn't in the DLL, the linker would complain when you ran it, as it wouldn't be able to find the function in the dynamic version of the .a file either.
Maybe you should host your executable which doesn't work somewhere for someone else to test. If it works on there PC, then it's definitely a DLL issue.
Bookmarks