Learn Qt
Tuesday, 7. July 2009, 18:20:40
Nowdays, I start to learn using modules Qt...
And, I just write paper about Qt (in Indonesian language), hope it can give you more information about software development using framework Qt...
Makalah_Qt.pdf
#include <QtGui/QApplication>
#include <QtGui/QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel label("Hello, Qt is cool!");
label.show();
return app.exec();
}
And, I just write paper about Qt (in Indonesian language), hope it can give you more information about software development using framework Qt...
Makalah_Qt.pdf
