📄 附錄.bas
字号:
Attribute VB_Name = "Module1"
Option Explicit
Public time As Integer
Private Sub Timer1_Timer()
If time >= 3000 And time <= 4500 Then
time = time + 100
Form1.Image1.Move 3500, 4500, time, time
End If
If time > 4500 Then
time = time + 100
Form1.Image1.Move 3500, 4500, 9000 - time, 9000 - time
If time > 6000 Then
time = 3000
End If
End If
End Sub
Private Sub Command4_Click() '
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -