📄 form7.frm
字号:
VERSION 5.00
Begin VB.Form Form7
Caption = "Form7"
ClientHeight = 10290
ClientLeft = 60
ClientTop = 390
ClientWidth = 15240
LinkTopic = "Form7"
Picture = "Form7.frx":0000
ScaleHeight = 10290
ScaleWidth = 15240
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer2
Left = 11280
Top = 4800
End
Begin VB.Timer Timer1
Interval = 100
Left = 480
Top = 4320
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "我们每人点亮一束光,就能凝聚一片光明!请相信我们一定能渡过!!"
BeginProperty Font
Name = "华文行楷"
Size = 24
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 615
Left = 0
TabIndex = 1
Top = 5280
Width = 15375
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "返 回"
BeginProperty Font
Name = "华文彩云"
Size = 36
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00C00000&
Height = 975
Left = 12600
TabIndex = 0
Top = 6000
Width = 2055
End
Begin VB.Image Image6
Height = 4020
Left = 10560
Picture = "Form7.frx":107D0
Stretch = -1 'True
Top = 7080
Width = 5295
End
Begin VB.Image Image5
Height = 4080
Left = 5040
Picture = "Form7.frx":73872
Stretch = -1 'True
Top = 7080
Width = 5340
End
Begin VB.Image Image4
Height = 4050
Left = -120
Picture = "Form7.frx":7E097
Stretch = -1 'True
Top = 7080
Width = 4980
End
Begin VB.Image Image3
Height = 4125
Left = 10680
Picture = "Form7.frx":F85E1
Stretch = -1 'True
Top = 0
Width = 5610
End
Begin VB.Image Image2
Height = 4140
Left = 5280
Picture = "Form7.frx":103BC3
Stretch = -1 'True
Top = 0
Width = 5295
End
Begin VB.Image Image1
Height = 4170
Left = 0
Picture = "Form7.frx":10E823
Stretch = -1 'True
Top = 0
Width = 5130
End
End
Attribute VB_Name = "Form7"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Label1_Click()
Form4.Show
Unload Me
End Sub
Private Sub Timer1_Timer()
If Image1.Left < 17000 Then
Image1.Left = Image1.Left + 50
Else: Image1.Left = 200
End If
If Image2.Left < 17000 Then
Image2.Left = Image2.Left + 50
Else: Image2.Left = 200
End If
If Image3.Left < 17000 Then
Image3.Left = Image3.Left + 50
Else: Image3.Left = 200
End If
If Image4.Left < 17000 Then
Image4.Left = Image4.Left + 50
Else: Image4.Left = 200
End If
If Image5.Left < 17000 Then
Image5.Left = Image5.Left + 50
Else: Image5.Left = 200
End If
If Image6.Left < 17000 Then
Image6.Left = Image6.Left + 50
Else: Image6.Left = 200
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -