|
Центрирование курсора на элементе |
|
|
Данный пример покажет, как можно переместить курсор мыши в центр элемента, который получает фокус. Private Declare Function SetCursorPos Lib "user32" (ByVal x As Long, ByVal y
As Long) As Long
Private Sub focus()
If Me.BorderStyle = 0 Then
x& = Me.ActiveControl.Left \ Screen.TwipsPerPixelX + ((Me.ActiveControl.Width / 2) /
Screen.TwipsPerPixelX) + (Me.Left / Screen.TwipsPerPixelX)
y& = Me.ActiveControl.Top \ Screen.TwipsPerPixelY + ((Me.ActiveControl.Height / 2) /
Screen.TwipsPerPixelY) + (Me.Top / Screen.TwipsPerPixelY)
Else
x& = Me.ActiveControl.Left \ Screen.TwipsPerPixelX + ((Me.ActiveControl.Width / 2 +
60) / Screen.TwipsPerPixelX) + (Me.Left / Screen.TwipsPerPixelX)
y& = Me.ActiveControl.Top \ Screen.TwipsPerPixelY + ((Me.ActiveControl.Height / 2 +
360) / Screen.TwipsPerPixelY) + (Me.Top / Screen.TwipsPerPixelY)
End If
a& = SetCursorPos(x&, y&)
End Sub
Private Sub Command1_GotFocus()
Call focus
End Sub
Private Sub Text1_GotFocus()
Call focus
End Sub
Private Sub List1_GotFocus()
Call focus
End Sub
|
|
|
|
|
|
|