After I've created a dialog box with all it's controls, I would like to change it's entire structure. Like resizing the dialog window, add and remove controls. How can such thing be done without using any classes.
This is a discussion on changing dialog box in the middle within the Windows Programming forums, part of the Platform Specific Boards category; After I've created a dialog box with all it's controls, I would like to change it's entire structure. Like resizing ...
After I've created a dialog box with all it's controls, I would like to change it's entire structure. Like resizing the dialog window, add and remove controls. How can such thing be done without using any classes.
"I don't suffer from insanity but enjoy every minute of it" - Edgar Allen Poe
http://www.Bloodware.net - Developing free software for the community.
>> Like resizing the dialog window
SetWindowPos()
>> add and remove controls
DestroyWindow()
CreateWindowEx()
that simple?!
thank you.
"I don't suffer from insanity but enjoy every minute of it" - Edgar Allen Poe
http://www.Bloodware.net - Developing free software for the community.