creating a window on a dialog box

Started by
3 comments, last by zacharya 20 years, 3 months ago
how do I create a window on a client area (dialog box)? Just like the one one windows media player. thanks before.
being young is a treasure that can''t be valued
Advertisement
I''m assuming you''re using C++. If another language, this may not be appropriate.


Just use the Win32 API

CreateWindowEx or CreateWindow.

Make sure to set the parent window parameter as your client area window.
thanks a lot.
being young is a treasure that can''t be valued
I tried your suggestion but still founf that the child windows is not embedded on the parent window....it still floats....

any solution?
being young is a treasure that can''t be valued
You need to add WS_CHILD to the window styles.

Fruny: Ftagn! Ia! Ia! std::time_put_byname! Mglui naflftagn std::codecvt eY'ha-nthlei!,char,mbstate_t>

This topic is closed to new replies.

Advertisement