vb 获取鼠标在窗体内的相对坐标

如何编写一个代码,使得当鼠标移动出窗体时触发事件,比如弹出msgbox... 如何编写一个代码,使得当鼠标移动出窗体时触发事件,比如弹出msgbox 展开
 我来答
勒泰号
2013-04-12 · 超过16用户采纳过TA的回答
知道答主
回答量:89
采纳率:0%
帮助的人:34.4万
展开全部
Private Type POINTAPI
X As Long
Y As Long
End Type
Dim MousePos As POINTAPI
Private Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
Private Sub Command1_Click()
Timer1.Enabled = True
End Sub
Private Sub Timer1_Timer()
GetCursorPos MousePos
newx = MousePos.X * Screen.TwipsPerPixelX
newy = MousePos.Y * Screen.TwipsPerPixelY - 300
Label1 = newx
Label2 = newy
'窗体x,y
labctx = Form1.Left
labcty = Form1.Top
If Not (newx >= Form1.Left And newx <= Form1.Left + Form1.Width And newy >= Form1.Top And newy <= Form1.Top + Form1.Height) Then
MsgBox "你移出窗口了"
Timer1.Enabled = False
End If
End Sub

Form1 窗体上添加

lable 控件  lable1 ,lable2 (鼠标x,y) 

                 labctx,labcty  (窗体x,y)

timer 控件  timer1 

command 控件 command1

gaphy2010
2013-04-12 · TA获得超过5848个赞
知道小有建树答主
回答量:786
采纳率:0%
帮助的人:822万
展开全部
有个笨方法,试试:(注意表单整大点)

Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If X < 100 Or Y < 100 Then
MsgBox "out"
End If
If X > Me.ScaleWidth - 100 Then
MsgBox "out"
End If
If Y > Me.ScaleHeight - 100 Then
MsgBox "out"
End If
End Sub
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式