Have you checked from wxwidgets documentation what you get from dlg->GetHandle() is a win32 window handle, not some internal handle from wxwidgets? The cast would seem to indicate the types are maybe not compatible in the first place and thus what is returned from dlg->GetHandle() isn't a valid Windows handle at all. DockWindowAdd((HWND)dlg->GetHandle(), "Hello World", 40400, true); A similar problem appears to be in the call : wxWindow *window = w->CreateWindowFromHWND(0, (WXHWND) g_hwndParent); You are casting a win32 window handle to what would maybe appear to be wxwidget's own window handle type.