011
27.02.2005, 19:27 Uhr
~Fragezeichen
Gast
|
Hallo zusammen!
Habe mir die Qt Version 2.3 runtergeladen und installiert. Wie kann ich nun mit meinem Dev C++ Compiler Qt nutzen?
Habe hier ein Beispielprogramm aus einer Vorlesung, aber es läuft bei mir nicht.
#include <qapplication> #include <qlabel>
int main(int argc, char **argv)
{ QApplication app(argc, argv); //Anwendungsobjekt mit Namen app
// QLabel *hello= new QLabel("<font color=yellow>Hello <i>Qt</i>""</font>", 0); QLabel *hello= new QLabel("Hello QT", 0);
app.setMainWidget(hello); //Anwendung soll Hauptfenster sein hello->show(); //Lable (im Hauptfenster) anzeigen return app.exec(); //Anwendung starten }
LG Fragezeichen |