Hi,
I would like to have an SDI that is non-resizable. Anybody knows how to do this. Thanks
Amish
This is a discussion on Make an SDI non-resizable within the Windows Programming forums, part of the Platform Specific Boards category; Hi, I would like to have an SDI that is non-resizable. Anybody knows how to do this. Thanks Amish...
Hi,
I would like to have an SDI that is non-resizable. Anybody knows how to do this. Thanks
Amish
I found it:
Use
cs.style=cs.style&~WS_THICKFRAME;
cs.style=cs.style&~WS_MAXIMIZEBOX;
in PreCreateWindow function.
Amish