📄 form5.frm
字号:
VERSION 5.00
Object = "{27395F88-0C0C-101B-A3C9-08002B2F49FB}#1.1#0"; "PICCLP32.OCX"
Begin VB.Form Form5
Caption = "Form5"
ClientHeight = 11070
ClientLeft = 60
ClientTop = 390
ClientWidth = 15240
LinkTopic = "Form5"
Picture = "Form5.frx":0000
ScaleHeight = 11070
ScaleWidth = 15240
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Interval = 500
Left = 2040
Top = 600
End
Begin VB.PictureBox Picture1
Height = 5775
Left = 240
ScaleHeight = 5715
ScaleWidth = 7635
TabIndex = 0
Top = 1080
Width = 7695
End
Begin PicClip.PictureClip PictureClip1
Left = 480
Top = 1080
_ExtentX = 27093
_ExtentY = 20320
_Version = 393216
Rows = 2
Cols = 2
Picture = "Form5.frx":38F2C
End
Begin VB.Label Label2
BackStyle = 0 'Transparent
Caption = "返 回"
BeginProperty Font
Name = "华文彩云"
Size = 24
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H000000FF&
Height = 1215
Left = 12840
TabIndex = 2
Top = 840
Width = 2055
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "骨肉相连 同此国殇"
BeginProperty Font
Name = "黑体"
Size = 72
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0080FFFF&
Height = 3135
Left = 960
TabIndex = 1
Top = 7320
Width = 6015
End
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim number As Integer
Private Sub Label2_Click()
Form4.Show
Unload Me
End Sub
Private Sub Timer1_Timer()
number% = number% + 1
If number >= 4 Then
number = 0
End If
Picture1.Picture = PictureClip1.GraphicCell(number%)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -