ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 5865|回复: 4

VBA获取一个控件的屏幕位置

[复制链接]

TA的精华主题

TA的得分主题

发表于 2016-1-19 12:05 | 显示全部楼层 |阅读模式
下面是在网上找到的VB获取一个控件的屏幕位置,怎么用运用它呢
GetControlRECT.Bas
'//////////////////////////////////////////////////////////////////////////////////////////////////////////
'ProgrammingBy Kejisoft (Http://Hi.Baidu.com/Kejisoft)        //
'Date
2011-02-10                                                                        //
'Functions
                                                                                 //
' GetDesktopWindowRect                                                  //
'              
获取一个控件在屏幕用Rect描述的位置                         //
' SetCursorToControl                                                         //
'               
设置鼠标指针到一个控件                                                'IDE:Microsoft Visual Basic 6.0企业版                                           //
'//////////////////////////////////////////////////////////////////////////////////////////////////////////
Declare FunctionGetDesktopWindow Lib "user32" () As Long
Declare Function GetWindowRect Lib"user32" (ByVal Hwnd As Long, lpRect As RECT) As Long
Type RECT
    Left AsLong
    Top AsLong
    Right AsLong
    Bottom AsLong
End Type
Declare Function GetCursorPosLib "user32" (lpPoint As POINTAPI) As Long
Type POINTAPI
    X As Long
    Y As Long
End Type
Declare Function SetCursorPosLib "user32" (ByVal X As Long, ByVal Y As Long) As Long
'/////////////////////////////////////////Functions////////////////////////////////////////////////////////////////
Public Function GetDesktopWindowRect(HwndAs Long, Rct As RECT, MousePos As POINTAPI) As Boolean
    Dimexecute As Integer
    execute =GetWindowRect(Hwnd, Rct)
   GetDesktopWindowRect = IIf(execute = 0, False, True)
   GetCursorPos MousePos
   
End Function
Public FunctionSetCursorToControl(ControlHwnd As Long) As Boolean
    Dim Rect2As RECT, MousePos2 As POINTAPI
    DimControlX As Long, ControlY As Long
   SetCursorToControl = GetDesktopWindowRect(ControlHwnd, Rect2, MousePos2)
    '
计算控件的中心位置坐标
    ControlX= Rect2.Left + ((Rect2.Right - Rect2.Left) / 2)
    ControlY= Rect2.Top + ((Rect2.Bottom - Rect2.Top) / 2)
   
   SetCursorPos ControlX, ControlY
   
End Function

说明:本模块的函数可以获取一个控件的屏幕位置,并可以设置鼠标指针到该控件上,另外利用该函数可以实现控件的鼠标MouseOut事件,因此可以利用其制作漂亮的控件(按钮、CheckBoxOption等)。

TA的精华主题

TA的得分主题

发表于 2016-2-18 17:00 | 显示全部楼层
本帖最后由 banjinjiu 于 2016-2-18 17:02 编辑

'模块代码:
  1. Declare Function GetDesktopWindow Lib "user32" () As Long
  2. Declare Function GetWindowRect Lib "user32" (ByVal hwnd As Long, lpRect As RECT) As Long
  3. Declare Function GetCursorPos Lib "user32" (lpPoint As POINTAPI) As Long
  4. Declare Function SetCursorPos Lib "user32" (ByVal X As Long, ByVal Y As Long) As Long

  5. Type RECT
  6. Left As Long
  7. Top As Long
  8. Right As Long
  9. Bottom As Long
  10. End Type

  11. Type POINTAPI
  12. X As Long
  13. Y As Long
  14. End Type

  15. Public Function GetDesktopWindowRect(hwnd As Long, Rct As RECT, MousePos As POINTAPI) As Boolean
  16. Dim execute As Integer
  17. execute = GetWindowRect(hwnd, Rct)
  18. GetDesktopWindowRect = IIf(execute = 0, False, True)
  19. GetCursorPos MousePos
  20. End Function

  21. Public Function SetCursorToControl(ControlHwnd As Long) As Boolean
  22. Dim Rect2 As RECT, MousePos2 As POINTAPI
  23. Dim ControlX As Long, ControlY As Long
  24. SetCursorToControl = GetDesktopWindowRect(ControlHwnd, Rect2, MousePos2)
  25. '计算控件的中心位置坐标
  26. ControlX = Rect2.Left + ((Rect2.Right - Rect2.Left) / 2)
  27. ControlY = Rect2.Top + ((Rect2.Bottom - Rect2.Top) / 2)
  28. SetCursorPos ControlX, ControlY
  29. End Function
复制代码

'窗体代码:(两个命令按钮,其实一个也可以,在立即窗口查看)
  1. Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
  2. Private Declare Function GetDC Lib "user32" (ByVal hwnd As Long) As Long
  3. Private Sub CommandButton1_Click()
  4. Dim Rects As RECT, ExecuteValue As Boolean
  5. Dim MousePoint As POINTAPI
  6. hwnd& = FindWindow(vbNullString, "UserForm1")
  7. hDC = GetDC(hwnd)
  8. ExecuteValue = GetDesktopWindowRect(hwnd, Rects, MousePoint)
  9. Debug.Print "ExecuteValue=" & ExecuteValue
  10. Debug.Print "Rects.Top=" & Rects.Top
  11. Debug.Print "Rects.Left=" & Rects.Left
  12. Debug.Print "Rect.Bottom=" & Rects.Bottom
  13. Debug.Print "Rect.Right=" & Rects.Right
  14. Debug.Print "MousePoint.X= " & MousePoint.X
  15. Debug.Print "MousePoint.Y=" & MousePoint.Y
  16. 'MsgBox "执行结果请看立即窗口!", 48, "提示"
  17. End Sub
  18. Private Sub CommandButton2_Click()
  19. hwnd& = FindWindow(vbNullString, "UserForm1")
  20. hDC = GetDC(hwnd)
  21. SetCursorToControl hwnd
  22. End Sub
复制代码

TA的精华主题

TA的得分主题

 楼主| 发表于 2016-2-18 23:33 | 显示全部楼层

TA的精华主题

TA的得分主题

发表于 2016-3-3 10:59 | 显示全部楼层
本帖最后由 banjinjiu 于 2016-3-3 11:37 编辑

请教一个问题:在ppt放映模式下动态添加一个image控件,并添加图片
例1:成功(在ppt放映模式下动态添加一个image控件)
  1. Private Sub CommandButton1_Click()
  2.     fName = "C:\Users\Administrator\Desktop\2.jpg"
  3.     Set pic = ActivePresentation.Slides(1).Shapes.AddOLEObject _
  4.         (Left:=180, Top:=100, Width:=365, Height:=295, ClassName:="Forms.Image.1", Link:=msoTrue)
  5. End Sub
复制代码

例2:不成功(在ppt放映模式下动态添加一个image控件,并添加图片)
  1. Private Sub CommandButton1_Click()
  2.     fName = "C:\Users\Administrator\Desktop\2.jpg"
  3.     Set pic = ActivePresentation.Slides(1).Shapes.AddOLEObject _
  4.         (Left:=180, Top:=100, Width:=365, Height:=295, ClassName:="Forms.Image.1", Link:=msoTrue)
  5.     Image1.Picture = LoadPicture(fName)
  6.     'pic.Picture = LoadPicture(fName)
  7. End Sub
复制代码

请问:例2的程序如何修改?才能让image1控件添加图片。如果使用两个程序,我的问题能解决添加。程序就不附上了。


另:怎样用VBA实现保留原来的格式粘贴?的帖子,说清楚,并上传附件,说不定,我会做。
请用”回复“来回复我,自言自语,我看不到。

TA的精华主题

TA的得分主题

发表于 2023-10-8 19:21 | 显示全部楼层
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-21 20:36 , Processed in 0.038455 second(s), 9 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表