- 65
- 0
- 约2.53千字
- 约 5页
- 2019-05-10 发布于浙江
- 举报
实现在PPT演示过程中,用鼠标拖动图片
1.新建一个ppt空白文档。
2.点击菜单:“工具——宏——宏”,出现对话框。
3.对话框中“宏名”写:drop(其他也可以),再点“创建”,就进入代码模式。
4.“Sub drop()
End Sub”,类似的三句全删掉。把下面的代码全拷贝进去。
————————————————————————————————
Option Explicit
Declare Function GetKeyState Lib user32 (ByVal nVirtKey As Long) As Integer
Private Declare Function WindowFromPoint Lib user32 (ByVal xPoint As Long, ByVal yPoint As Long) As Long
Private Declare Function GetWindowRect Lib user32 (ByVal hwnd As Long, lpRect As RECT) As Long
Private Declare Function GetCursorPos Lib user32 (lpPoint As PointAPI) As Long
Private Declare Function SetCursorPos Lib user3
原创力文档

文档评论(0)