devxlogo

Dragging A Form By A Control

Dragging A Form By A Control

This code is reusable and small enough to paste into whatever you’redoing and instantly have a form that has no need for a title bar. In thegeneral declarations section, insert these lines:

 Declare Sub ReleaseCapture Lib "User" ()Declare Function SendMessage _	Lib "User" (ByVal hWnd As Integer, _	ByVal wMsg As Integer, _	ByVal wParem As Integer, lParem As Any) As Long

In the Mousedown event of the control, insert:

 Sub Command1_MouseDown (Button As Integer, _	Shift As Integer, X As Single, Y As Single)Dim Ret&ReleaseCaptureRet& = SendMessage(Me.hWnd, &H112, &HF012, 0)End Sub
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist