Add a OnMoving Event to your Forms

By | 2019-09-23

With this example, you can have “stuff happen” when a form is moved on the screen.

Option Explicit

'API Types
Public Type RECT
   Left As Long
   Top As Long
   Right As Long
   Bottom As Long
End Type

'API Constants
Const WM_MOVING = 534
Const GWL_WNDPROC = (-4)

'API declarations
Private Declare Function SetWindowLong Lib "user32.dll" Alias "SetWindowLongA" (ByVal hWnd As Long, ByVal nindex As Long, ByVal dwnewlong As Long) As Long
Private Declare Function CallWindowProc Lib "user32.dll" Alias "CallWindowProcA" (ByVal lpPrevWndFunc As Long, ByVal hWnd As Long, ByVal Msg As Long, ByVal wParam As Long, lParam As RECT) As Long
Private Declare Function DefWindowProc Lib "user32.dll" Alias "DefWindowProcA" (ByVal hWnd As Long, ByVal wMsg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long

Dim OldhWndProc As Long

Private Function OnMove(ByVal hWnd As Long, ByVal uMsg As Long, ByVal wParam As Long, lParam As RECT) As Long
   'Handle the OnMove event
   If uMsg = WM_MOVING Then
      'The form is moving!!
      Form1.Label1.Caption = lParam.Left & " " & lParam.Top
      'Insert your code HERE
   End If
   'Call the old WindowProc
   OnMove = CallWindowProc(OldhWndProc, hWnd, uMsg, wParam, lParam)
End Function

Public Sub InstallOnMovingEvent(frm As Form)
   'Install the new WindowProc - SubClassing
   OldhWndProc = SetWindowLong(frm.hWnd, GWL_WNDPROC, AddressOf OnMove)
End Sub

Public Sub RemoveOnMovingEvent(frm As Form)
   'Restore the original WindowProc
   SetWindowLong frm.hWnd, GWL_WNDPROC, OldhWndProc
End Sub

Usage

Private Sub Form_Load()
   InstallOnMovingEvent Me
End Sub

Private Sub Form_Unload(Cancel As Integer)
   RemoveOnMovingEvent Me
End Sub

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.