create window question
how can i create a window where it cant be resized. I want to be able to minimize it and then restore it but not change the size. Is there something I can pass in the window class or the create window functino to do this ? I cant find it on MSDN....their search engine is terrible
"Now go away or I shall taunt you a second time"
- Monty Python and the Holy Grail
You could use WS_OVERLAPPED as the dwStyle parameter when you call CreateWindowEx. That''ll create a window with a border and title but no controls. You won''t be able to re-size that.
If you need controls on the thing as well, then I dunno...
If you need controls on the thing as well, then I dunno...
This topic is closed to new replies.
Advertisement
Popular Topics
Advertisement
Recommended Tutorials
Advertisement