I think for first step better you try build simple application using qt only library without ezx stuff on A1200.
Code:#include <qapplication> #include <qwidget> int main(int argc, char** argv) QApplication a(argc, argv); QWidget *w = 0; w = new QWidget(0); a.setMainWidget(w); w->show(); int ret = a.exec(); if (w) delete w; return ret; }



Reply With Quote