|
One of my Vc++ 6.0 Widndows application I wanted to create a parent
window and wanted to add buttons or child controls to the parent window
Was searching for a way to do it. I think this is what I am looking for.
SetParent Function
The SetParent function changes the parent window of the specified child window.
HWND SetParent(HWND hWndChild,HWND hWndNewParent);
If the function succeeds, the return value is a handle to the previous parent
window.on failure , the return value is NULL
|
|