📄 module1.bas
字号:
Attribute VB_Name = "Module1"
Public Declare Function SetCapture Lib "user32" (ByVal hwnd As Long) As Long
Public Declare Function ReleaseCapture Lib "user32" () As Long
Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
'GetDesktopWindow
Private Declare Function GetDesktopWindow Lib "user32" () As Long
'Launch File and Associated Program
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" _
(ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, _
ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd _
As Long) As Long
Public Type POINTAPI
x As Long
y As Long
End Type
Public Const INVERSE = 6 'Characteristic of DrawStyle property(Inverse).
Public Const SOLID = 0 'Characteristic of DrawMode property.
Public Const DOT = 2 'Characteristic of DrawMode property.
'Excel靡
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -