Quote Originally Posted by Eldritch View Post
Unless the parent window is also a QWidget in your QApplication, QWidget::find() won't work.

I suspect what you may need to do in this case is use ::SetParent() directly on the wID of your own QWidget after you create it.
Thank you for the tip.
But looking in the documentation:
void QWidget::setParent ( QWidget * parent )

So setParent needs a pointer to a QWidget. There is no setParent(WId) defined :-(

And if my try to do:
QWidget *parent=QWidget::find(WId); fails although WId is definetly a valid HWND, then setParent does not help me. :-(

Greetings from Berlin, Bernd