The information in this article applies to:
SUMMARY
The documentation for CWnd::LockWindowUpdate() states this function will
disable or reenable drawing for the CWnd object. In the remarks section,
the sentence "Disables or reenables drawing in the given window" is
incorrect. Starting with Visual C++ version 2.0, you should use
CWnd::UnlockWindowUpdate() to reenable drawing to a window locked with
CWnd::LockWindowUpdate().
MORE INFORMATION
CWnd::LockWindowUpdate() takes no parameters and is implemented as an
in-line call to the Windows function ::LockWindowUpdate(). The function
::LockWindowUpdate() is called with the this->m_hWnd parameter which causes
the window to be locked. To re-enable drawing, NULL should be passed to
::LockWindowUpdate().
Additional query words: 1.00 1.50 2.00 2.10 2.20 dskbsweep 4.00 4.10
Keywords : kbdocfix kbMFC KbUIDesign kbVC |
Last Reviewed: February 2, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |