what are the styles arg we can pass in cwnd::ModifeyStyle()

Hi
i like to know the CWnd styles to pass in this function
CWnd::Modifeystyle() as 2 & 3 argument.
it is Windows CE environment. to work on evc++3.0
i need this information.
2) and also pls recomend some books on EmbeddedVc++3.0
WindowsCE

The following dwStyle flags are not supported:
WS_CHILDWINDOW WS_ICONIC
WS_MAXIMIZE WS_MAXIMIZEBOX
WS_MINIMIZE WS_MINIMIZEBOX
WS_OVERLAPPEDWINDOW WS_POPUPWINDOW

thanks
talluritrk@rediffmail.com
[513 byte] By [talluritrk] at [2007-11-17 17:11:08]
# 1 Re: what are the styles arg we can pass in cwnd::ModifeyStyle()
Hi
the first parameter is the style to REMOVE
second parameter is the style to ADD
third can be 0

BOOL ModifyStyle( DWORD dwRemove, DWORD dwAdd, UINT nFlags = 0 );

FLAGS CAN BE
SWP_NOSIZE Retains the current size.
SWP_NOMOVE Retains the current position.
SWP_NOZORDER Retains the current Z order.
SWP_NOACTIVATE Does not activate the window.

Hope this helps
Kandukondein
kandukondein at 2007-11-9 12:22:33 >