I want to create a window that doesnt have the 3d look/border but a thin border.
I tried creating a window with CreateWindowEx with the flags: WM_CAPTION and all sort of combinations, but it keeps creating a window with a 3d look.
see the screenshot i took from an app, and notice the borders. i also used the exact windowflags the app has but with no luck either.
Anyone know how to do this?
I tried creating a window with CreateWindowEx with the flags: WM_CAPTION and all sort of combinations, but it keeps creating a window with a 3d look.
see the screenshot i took from an app, and notice the borders. i also used the exact windowflags the app has but with no luck either.
Anyone know how to do this?
You must have subsystem version set to 3.1 istead of 4.0 in the PE header of your program.
thanks! works like a charm! :alright: