|
|
|
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 |
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() 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 Dim lpRect As RECT GetUpdateRect Me.hWnd, lpRect, False 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 ) |
|
|