Hi,

I want to create a QWidget that is shown on the today screen. For now I search the HWND of the today screen app (and find the correct one), but when I try to create the QWidget as a child it always crashes my windows mobile phone.

I use the following code to create the child widget:
Qt Code:
  1. MyChildWidget::MyChildWidget(WId parent)
  2. : QWidget( 0, Qt::SubWindow )
  3. {
  4. create( parent, true, true );
  5. }
To copy to clipboard, switch view to plain text mode 

Thanks for any help