devxlogo

Move the Cursor to the Center

Use this simple subroutine to move the mouse/cursor to the center of an object. It’s useful for tab-like functions and default settings:

 Private Declare Function SetCursorPos& Lib _	"user32" (ByVal x As Long, ByVal _	y As Long)Private Declare Function GetWindowRect& Lib _	"user32" (ByVal hwnd As Long, lpRect _	As Rect)Private Type Rect	left As Long	top As Long	right As Long	bottom As LongEnd TypePublic Sub SetMouseFocus(ByVal Obj As Object)	Dim Rect As Rect	'Get the bounding rectangle for window	GetWindowRect Obj.hwnd, Rect	'Set the cursor position to the center of the object	SetCursorPos Rect.right - ((Rect.right - Rect.left) _		/ 2), Rect.bottom - _		((Rect.bottom - Rect.top) / 2)End Sub

Here’s an example:

 Private Sub cmdQuit_Click()	' Move Cursor to command button	' "cmdAreYouSure"	SetMouseFocus cmdAreYouSureEnd Sub

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

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.