📄 form3.frm
字号:
VERSION 5.00
Object = "{27395F88-0C0C-101B-A3C9-08002B2F49FB}#1.1#0"; "PICCLP32.OCX"
Begin VB.Form Form3
BackColor = &H00000000&
Caption = "Form3"
ClientHeight = 11070
ClientLeft = 60
ClientTop = 390
ClientWidth = 15240
ForeColor = &H00000000&
LinkTopic = "Form3"
ScaleHeight = 11070
ScaleWidth = 15240
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer4
Interval = 500
Left = 120
Top = 3960
End
Begin VB.Timer Timer3
Interval = 800
Left = 2520
Top = 7560
End
Begin VB.PictureBox Picture3
Height = 1935
Left = 720
ScaleHeight = 1875
ScaleWidth = 13515
TabIndex = 2
Top = 7440
Width = 13575
End
Begin PicClip.PictureClip PictureClip3
Left = 480
Top = 7440
_ExtentX = 24024
_ExtentY = 17542
_Version = 393216
Rows = 5
Picture = "Form3.frx":0000
End
Begin VB.Timer Timer2
Interval = 800
Left = 2400
Top = 6120
End
Begin VB.PictureBox Picture2
Height = 1935
Left = 720
ScaleHeight = 1875
ScaleWidth = 13635
TabIndex = 1
Top = 3840
Width = 13695
End
Begin PicClip.PictureClip PictureClip2
Left = 480
Top = 5760
_ExtentX = 24130
_ExtentY = 17436
_Version = 393216
Rows = 5
Picture = "Form3.frx":1B8F0E
End
Begin VB.PictureBox Picture1
Height = 2055
Left = 720
ScaleHeight = 1995
ScaleWidth = 13635
TabIndex = 0
Top = 240
Width = 13695
End
Begin VB.Timer Timer1
Interval = 800
Left = 6000
Top = 1800
End
Begin PicClip.PictureClip PictureClip1
Left = 480
Top = 0
_ExtentX = 24606
_ExtentY = 18177
_Version = 393216
Rows = 5
Picture = "Form3.frx":371270
End
Begin VB.Label Label1
BackColor = &H00C0E0FF&
Caption = "一起来祈祷吧"
BeginProperty Font
Name = "华文行楷"
Size = 21.75
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 2775
Left = 14640
TabIndex = 6
Top = 7920
Width = 495
End
Begin VB.Label Label4
BackColor = &H00000000&
Caption = " 守望相助 不离不弃!"
BeginProperty Font
Name = "隶书"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 1095
Left = 360
TabIndex = 5
Top = 9960
Width = 14175
End
Begin VB.Label Label3
BackColor = &H00000000&
Caption = " 一方有难 八方支援!"
BeginProperty Font
Name = "隶书"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 1095
Left = 360
TabIndex = 4
Top = 6120
Width = 14055
End
Begin VB.Label Label2
BackColor = &H00000000&
Caption = " 众志成城 抗震救灾!"
BeginProperty Font
Name = "隶书"
Size = 36
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 1095
Left = 360
TabIndex = 3
Top = 2760
Width = 14055
End
End
Attribute VB_Name = "Form3"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim number As Integer
Private Sub Text1_Change()
End Sub
Private Sub Label1_Click()
Form4.Show
Unload Me
End Sub
Private Sub Timer1_Timer()
number% = number% + 1
If number >= 5 Then
number = 0
End If
Picture1.Picture = PictureClip1.GraphicCell(number%)
End Sub
Private Sub Timer2_Timer()
number% = number% + 1
If number >= 5 Then
number = 0
End If
Picture2.Picture = PictureClip2.GraphicCell(number%)
End Sub
Private Sub Timer3_Timer()
number% = number% + 1
If number >= 5 Then
number = 0
End If
Picture3.Picture = PictureClip3.GraphicCell(number%)
End Sub
Private Sub Timer4_Timer()
Label2.ForeColor = RGB(255 * Rnd, 255 * Rnd, 255 * Rnd)
Label3.ForeColor = RGB(255 * Rnd, 255 * Rnd, 255 * Rnd)
Label4.ForeColor = RGB(255 * Rnd, 255 * Rnd, 255 * Rnd)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -