Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to change my windo style during runtime. I use this code

if (this->fullscreen)
{
    this->style = WS_POPUP|WS_VISIBLE;
}
else 
{
    this->style = WS_OVERLAPPED|WS_SYSMENU|WS_VISIBLE;
}

    SetWindowLongPtr(this->mainWindowHandle, GWL_STYLE, this->style);

        SetWindowPos(this->mainWindowHandle, 
                HWND_TOP, 
                0, 
                0,
                0,    //New Width
                0, //New Height, 
            SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED);

But it has no effect... and window is still without border (WS_POPUP)...

share|improve this question
Full code here: pastie.org/1552396 – Perry Feb 11 '11 at 12:21

3 Answers

According to MSDN, you can't modify those particular styles after the window is created. If you're going to try to anyway, it also says that WS_SYSMENU requires WS_CAPTION.

share|improve this answer
+1. You'll probably need separate windows for full-screen and windowed modes and switch between them as needed (by enabling the right window and making it visible and doing the reverse to the other). – Adrian McCarthy Feb 11 '11 at 18:21

Try calling SetWindowPos with the flag SWP_DRAWFRAME and see if it helps.

share|improve this answer
No help.. SWP_DRAWFRAME is define for SWP_FRAMECHANGED (or the othew way) – Perry Feb 11 '11 at 11:25

You might need to use CWnd::ModifyStyle. Have a look at example here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.