How can Qt program call a Windows DLL
-
Well, what you call a "Qt program" still is a C++ program, except that it's using the Qt Library.
This means you can use use a DLL as you always do in a C++ program: In any .cpp file that needs to call the DLL, include the .h file that corresponds to the DLL. Also link you binary against the import library (.lib for MSVC, .a for MinGW/GCC) for that DLL - how exactly is IDE-dependent. There is nothing Qt-specific about this.
If you want to load a DLL at runtime, you can again do this as in any Windows C++ program: Use LoadLibrary() in combination with GetProcAddress() from the Win32 API. You may also use Qt's QLibrary class for the exactly same purpose, which may be more convenient (and more portable), if you use Qt anyway.
See also: