News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

Customized window, without title bar ...

Started by James Ladd, February 10, 2007, 10:42:59 PM

Previous topic - Next topic

James Ladd

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.

hutch--

James,  have a play with the WS_POPUP window style.
Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

MichaelW

Four possibilities are WS_POPUP or WS_POPUPWINDOW, combined with WS_THICKFRAME or WS_SIZEBOX.
eschew obfuscation

James Ladd