All,
I would like to make a window / dialog that does not have a title bar, close, maximize or other buttons.
Essentially the client area is all you see. I'd also like the window to be sizeable.
Does anyone know how to do this and is there an example anywhere?
(I have seen this done before, so I know it is possible)
Rgs, James.
James, have a play with the WS_POPUP window style.
Four possibilities are WS_POPUP or WS_POPUPWINDOW, combined with WS_THICKFRAME or WS_SIZEBOX.
I'll give those suggestions a try, thanks.