i'm using this code
splash
->setPixmap
(QPixmap(":/images/SPLASH-SCREEN.jpg"));
splash->showFullScreen();
splash->raise();
MainWindow w;
//splash->showMessage("Wait...");
QTimer::singleShot(3000,
&w,
SLOT(showFullScreen
()));
QTimer::singleShot(3000, splash,
SLOT(close
()));
return a.exec();
QApplication a(argc, argv);
QSplashScreen *splash = new QSplashScreen;
splash->setPixmap(QPixmap(":/images/SPLASH-SCREEN.jpg"));
splash->showFullScreen();
splash->raise();
MainWindow w;
//splash->showMessage("Wait...");
QTimer::singleShot(3000, &w, SLOT(showFullScreen()));
QTimer::singleShot(3000, splash, SLOT(close()));
return a.exec();
To copy to clipboard, switch view to plain text mode
it is running fine on my C7 & c5 but not running on my 6120 nor n95
why???
thanks
Ram
Bookmarks