📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "鼠标操作"
ClientHeight = 4830
ClientLeft = 60
ClientTop = 345
ClientWidth = 7185
LinkTopic = "Form1"
ScaleHeight = 4830
ScaleWidth = 7185
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "NO"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 600
TabIndex = 1
Top = 2400
Width = 1215
End
Begin VB.CommandButton Command2
Caption = "YES"
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3720
TabIndex = 0
Top = 2400
Width = 1215
End
Begin VB.Label Label1
AutoSize = -1 'True
Caption = "你爱我吗?"
BeginProperty Font
Name = "宋体"
Size = 21.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 435
Left = 840
TabIndex = 2
Top = 720
Width = 2265
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim pi As POINTAPI
If Command1.Left <> Screen.Width And Command1.Top <> Screen.Height Then
Command1.Left = pi.X + 1600 * (1 + Rnd)
Command1.Top = pi.Y + 800 * (1 + Rnd)
End If
If Command1.Left = Screen.Width Then
Command1.Left = pi.X - 1600 * Rnd
End If
If Command1.Top = Screen.Height Then
Command1.Top = pi.Y - 800 * Rnd
End If
End Sub
Private Sub Command2_Click()
MsgBox "我也喜欢你!"
End
End Sub
Sub Command2_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
End Sub
Private Sub Label1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
Dim Ret&
ReleaseCapture
Ret& = SendMessage(Me.hwnd, &H112, &HF012, 0)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -