CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 1999
    Posts
    2

    How to keep a window drawn when moving it (instead of just an outline)


    Gurus:

    How do I keep a window drawn when I'm moving it (and not just see
    the window "outline") ? I've tried overriding WM_MOVING, but to
    no avail...

    Thanks!
    -Aleister




  2. #2
    Join Date
    Aug 1999
    Location
    CA
    Posts
    23

    Re: How to keep a window drawn when moving it (instead of just an outline)

    Win NT or Plus on Win95 do that for you, so I would not do it if I was you... Alternatively you could do an Invalidate at every move, but that could be problematic, as the modal loop's processing would not be proceeding as normal -- only who has that code can say for sure.
    Sal.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured