Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Optimized Paint procedures with subclassing

Total Hit ( 2505)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


The Paint event doesn't provide with information about which region of the form must be actually repainted, and therefore forces the programmer to repaint the entire client area, which in some cases can be a time-consuming operation.

You can determine the smallest rectangle that needs to be updated by subclassing the form and trapping the WM_PAINT message before it reaches the original window procedure in the VB runtime. If you do so, you can invoke the GetUpdateRect API function to retrieve the rectangle that must be updated:

Click here to copy the following block
' REQUIRES THE MSGHOOK.DLL COMPONENT

' you can omit the following constant definition,
' because it is defined in the MsgHook type library
Private Const WM_PAINT = &HF

Private Type RECT
  Left As Long
  Top As Long
  Right As Long
  Bottom As Long
End Type
Declare Function GetUpdateRect Lib "user32" (ByVal hWnd As Long, lpRect As RECT, _
  ByVal bErase As Long) As Long

Dim WithEvents FormHook As MsgHook

Private Sub Form_Load()
  ' start subclassing of the form
  Set FormHook = New MsgHook
  FormHook.StartSubclass hWnd
End Sub

Private Sub FormHook_BeforeMessage(uMsg As Long, wParam As Long, lParam As Long, _
  retValue As Long, Cancel As Boolean)
  If uMsg = WM_PAINT Then
    ' Windows is asking the window to repaint itself
    Dim lpRect As RECT
    GetUpdateRect Me.hWnd, lpRect, False
    ' now lpRect holds the size and position (in pixels)
    ' of the rectangle that must be updated
    ' ...
    ' ... (write your repaint procedure here) ...
    ' ...
  End Select
End Sub


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.