I followed the tips on compiling QT for MSVC2005 and creating .vcproj files. I successfully compiled a Hello World! QT Example in MSVC++....

Now I'm trying to use QT Designer with msvc++ 2005...

I made a simple dialog following a tutorial, I saved the form (.ui file) to my project's directory

I redid this

qmake -project -t vcapp -o helloqt.pro
qmake

in a command prompt

When I opened the .vcproj file again, there was a new folder called "Generated Forms" in the solution explorer

this folder pointed to files moc_mainwindow.cpp and moc_mainwindow.h, which unfortunately do not exist...

Note, there's also a folder called "Form files" which contains the .ui file I created earlier

It would appear that I'm onto something, but I haven't gotten to the point that I can save a .ui file, compile my project with glue code and pop up my new GUI..

What did I do wrong?