鼠标编程小技巧二则

2008-02-23 06:55:53来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

一.通过鼠标在屏幕上的移动来控件程序界面

本例通过鼠标在屏幕上的移动来控制程序窗体的显示与隐藏:当鼠标移动到窗体所在区域时窗体显示,反之隐藏起来。仅需一条API函数:GetCursorPos。注意:如果需要将API函数置于模块中请对代码作相应修改。要尝试本例,需给标准EXE工程缺省添加一个Timer控件。

Private Type POINTAPI
x As Long
y As Long
End Type

Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long

Private Sub Form_Load()
Me.Visible = False
Timer1.Enabled = True
Timer1.Interval = 100
End Sub

Private Sub Timer1_Timer()
Dim lResult As Long
Dim lpPoint As POINTAPI
Dim iCounter As Integer
lResult = GetCursorPos(lpPoint)
If lpPoint.x < Me.Left \ Screen.TwipsPERPixelX Or lpPoint.x > (Me.Left _
Me.Width) \ Screen.TwipsPerPixelX Or lpPoint.y < Me.Top \ _
Screen.TwipsPerPixelY Or lpPoint.y - 10 > (Me.Top Me.Height) \ _
Screen.TwipsPerPixelY Then
Me.Visible = False '鼠标在窗体区域之外时
Else
Me.Visible = True '鼠标在窗体区域之内时
End If
End Sub

二.获得Mouse_Exit事件

所谓Mouse_Exit事件,是指鼠标指针离开某一控件所应发生的事件。本例是通过Form_MouseMove事件来判断鼠标指针是在窗体之内还是窗体之外的,你可根据需要作相应改动。请给窗体缺省创建一个按钮(用于观察效果)。

Private Declare Function SetCapture Lib "user32" (ByVal hWnd As Long) As Long
Private Declare Function ReleaseCapture Lib "user32" () As Long

Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim MouseExit As Boolean
MouseExit = (0 <= X) And (X <= Me.Width) And (0 <= Y) And (Y <= Me.Height)
If MouseExit Then
Me.Caption = "鼠标指针在窗体范围内"
Command1.Enabled = True
SetCapture Me.hWnd
Else
Me.Caption = "鼠标指针在窗体范围外"
Command1.Enabled = False
ReleaseCapture
End If
End Sub

上一篇: 禁用 Alt-Tab 或 Ctrl-Alt-Del
下一篇: 破解Windows屏幕保护密码

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:VB5.0调用Office97技巧

下一篇:用VB6编写强力的windows隐藏引擎