|
Prev: Will another CWinThread object get from main thread's messages
Next: How to place focus back after error message window closed?
From: James Duy Trinh on 13 May 2008 03:58 Hi all, Now i want to remove the title bar of dialog, but system menu still work on taskbar. This can ? Anyone have idea?
From: robert on 13 May 2008 04:18 They are two different kind of styles of one window, title bar specified by WS_CAPTION and system menu specified by WS_SYSMENU. If you want to remove the system menu, just call ModifyStyle(0, WS_SYSMENU) Thanks Robert "James Duy Trinh" <vietdoor(a)gmail.com> д����Ϣ����:uydSs8MtIHA.1240(a)TK2MSFTNGP02.phx.gbl... > Hi all, > > Now i want to remove the title bar of dialog, but system menu still work > on taskbar. > This can ? Anyone have idea? >
From: James Duy Trinh on 13 May 2008 04:44
Thanks very much. I did this in resource file "robert" <zhi.li100(a)gmail.com> wrote in message news:u0sU0FNtIHA.524(a)TK2MSFTNGP05.phx.gbl... > They are two different kind of styles of one window, title bar specified > by WS_CAPTION and system menu specified by WS_SYSMENU. If you want to > remove the system menu, just call ModifyStyle(0, WS_SYSMENU) > > Thanks > Robert > > "James Duy Trinh" <vietdoor(a)gmail.com> > д����Ϣ����:uydSs8MtIHA.1240(a)TK2MSFTNGP02.phx.gbl... >> Hi all, >> >> Now i want to remove the title bar of dialog, but system menu still work >> on taskbar. >> This can ? Anyone have idea? >> > > |