CPropertySheet - removing frame

110 Views Asked by At

Iam trying to remove the frame of my CPropertySheet. I googled a lot in the last days, but couldnt find a solution.

i thought it would work with:

ModifyStyle(WS_CAPTION, 0,0);
ModifyStyleEx(WS_EX_DLGMODALFRAME, 0, 0);

but it doesnt^^

here is a picture https://ibb.co/R7b0tdD

i want to remove this 3D border

1

There are 1 best solutions below

0
JohnCz On

It is hard to determine, but try removing all border/frame styles but WS_BORDER and make sure to remove WS_EX_CLIENTEDGE style. This is just a guess but I would start with the above steps.