Dear everybody,
I have a Qt-based application which runs on a Windows CE 5.0 embedded device. The application shows some
.bmp files and it does a great work. The same application has been compiled for Windows CE 6.0 but it isn't
able to show the same .bmp files. The WinCE 6.0 hardware platform is different from the WinCE 5.0 one.
I really don't know where looking for the problem. Does the WinCE 6.0 image miss some component ? (The gesture and
imaging components are all included). Does QT need some special setting during its building in order to be running on
WinCE 6.0. ?
Following is the code used to show bitmaps:
cImg = new QLabel ();
cImg -> setGeometry (0, 0, 80 * aFactor, 60);
cImg -> setFrameShadow (QFrame::Plain);
cImg -> setFrameShape (QFrame::NoFrame);
cImg -> setAlignment (Qt::AlignHCenter | Qt::AlignVCenter);
cImg -> setStyleSheet ("color: blue");
cPx.load (aPx);
cImg -> setPixmap (cPx);
Any help will be really appreciated.
Best Regards
/Alessandro
Bookmarks