Hey ho..

Does anyone know how to show a child dialog with a hidden parent (SW_HIDE)?

I've got window HWND parent .. and now:


Code:
HWND child= CreateDialog( GetModuleHandle( 0 ), MAKEINTRESOURCE( IDD_child ), parent, WndProc_child );
ShowWindow( parent, SW_HIDE );
I would like to show my child dialog but when i hide my parent, the child would not appear... is there any other way of doing this... ?

my dialog must be parent's child...


gracias!
b