how to make title bar less window in mfc by code?
A:
Use:
ModifyStyle (WS_CAPTION, 0); // to hide
ModifyStyle (0, WS_CAPTION); // to show
To remove it earlier Override PreCreateWindow()
and remove WS_SYSMENU
mmonem
2010-09-13 14:51:57
thanks it worked :)
2010-09-16 14:32:52