PRB: Extra Repaint of VB CDK Graphical Custom Control

Last reviewed: February 18, 1996
Article ID: Q108710
The information in this article applies to:
  • Professional Edition of Microsoft Visual Basic for Windows, version 3.0

SYMPTOMS

You can use the Visual Basic Control Development Kit (CDK) to design a graphical custom control to perform visual effects. However, when another control such as a Visual Basic button becomes visible on the same form as your custom control, the graphical control repaints even though its client area has not been invalidated.

CAUSE

The repaint logic in Visual Basic causes this behavior. Graphical controls get a VBM_PAINT message every time their container gets a WM_PAINT message, regardless of whether the graphical control is in the invalidated area.

The VBM_PAINT message is the paint notification for graphical controls. The value of the VBM_PAINT constant is defined in the VBAPI.H file in Visual Basic's CDK directory. WM_PAINT is a message for windowed controls. For examples of VBM_PAINT and WM_PAINT, see the PIX.C file in Visual Basic's CDK directory.

WORKAROUND

You can work around this behavior in the VBM_PAINT handler with the following C code:

   if (!RectVisible((HDC)wParam,(LPRECT)lParam)) {
      // Control is not in the paint region
      // Don't bother to repaint
      break;
      }


Additional reference words: 3.00 flash flicker
KBCategory: kbtool kbprg kbprb
KBSubcategory: TlsCDK


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: February 18, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.