Unsure of how to work with Qt

closed account (4Gb4jE8b)
So I'm using MSVC 2008 with Qt 4.7.1 which is good and all, except I can't find any tutorials or really anything at all that specifically uses MSVC, and I have no idea what I need to do to turn this:

1
2
3
4
5
6
7
int main(int argc, char *argv[])
{
	QApplication a(argc, argv);
	qttrial w;
	w.show();
	return a.exec();
}

into a hello world program.

Can someone point me to some tutorials that use MSVC as their compiler?

Thanks in advance
Topic archived. No new replies allowed.