Jul 22, 2004 #1 jvff Programmer Apr 1, 2001 64 BR Hello, I would like to know how to disable the user from resizing my window created with CreateWindowEx. Thank you, JVFF
Hello, I would like to know how to disable the user from resizing my window created with CreateWindowEx. Thank you, JVFF
Jul 27, 2004 #2 shetlandbob Programmer Mar 9, 2004 528 GB In your CreateWindowEx routine you can set the window style in the dwStyle variable, this can be a combination of a variety of styles see window styles in short what you dont want is WS_SIZEBOX or WS_THICKFRAME, use something like WS_BORDER instead Upvote 0 Downvote
In your CreateWindowEx routine you can set the window style in the dwStyle variable, this can be a combination of a variety of styles see window styles in short what you dont want is WS_SIZEBOX or WS_THICKFRAME, use something like WS_BORDER instead