📄 beginfrm.frm
字号:
VERSION 5.00
Begin VB.Form beginfrm
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 2865
ClientLeft = 3720
ClientTop = 2880
ClientWidth = 6795
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "beginfrm.frx":0000
ScaleHeight = 2865
ScaleWidth = 6795
ShowInTaskbar = 0 'False
Begin VB.Timer Timer1
Interval = 1000
Left = 240
Top = 1560
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "0"
Height = 180
Left = 120
TabIndex = 1
Top = 2520
Visible = 0 'False
Width = 90
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "创作:御剑工作室 -- 御剑飞行"
ForeColor = &H00E0E0E0&
Height = 180
Left = 1680
TabIndex = 0
Top = 2160
Width = 2520
End
Begin VB.Line Line1
BorderColor = &H00FFC0C0&
X1 = 120
X2 = 5520
Y1 = 2040
Y2 = 2040
End
End
Attribute VB_Name = "beginfrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()
If Val(Label2.Caption) = 2 Then
Unload Me
fmain.Show
psw.Show vbModal
Else
Label2.Caption = Str(Val(Label2.Caption) + 1)
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -