Hello!
I have a project that works in Qt4 on ubuntu.
It use <QWidget>, <QFile>, <QTextStream>;
<QDateTime>;
and <stdio.h>, <stdlib.h>, <time.h> (to generate random numbers).

Now I want to make it work on windows. I've installed Qt SDK on windows, opened my .pro and run it. But following error occured:
Runtime Error!
This application has requested the Runtime to terminate it in a usual way.
I've found some information in Internet. It says that problem is with .dlls:
here
The SDK comes with two sets of dlls. One set resides in $BASEDIR/bin and the other in $BASEDIR/qt/bin. The former contains the dlls used by Qt Creator, while the latter are the dlls that you want to ship with your executable.
But what sould I do to solve my problem? How to find out what .dlls and where I have to fix?