Jump to content
Sign in to follow this  
Horner

Removing the Frame on an Edit Control

Recommended Posts

Is there any way to remove the frame (or border) on an edit control? You know, the little box that goes around the outside of the control. A gui I'm using already has it's own border and I need to remove the default border from the control, any help is appreciated. :)

(Before you say it, I've removed the CT_Frame bit from the style definition in my RscEdit class.)

Share this post


Link to post
Share on other sites

To remove the frame, use the following style:

style = ST_NO_RECT;

For more info about styles, see community wiki

#define ST_NO_RECT        0x200

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×